![JAR search and dependency download from the Maven repository](/logo.png)
ru.lanwen.diff.uri.core.Delimiters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uri-differ-lib Show documentation
Show all versions of uri-differ-lib Show documentation
Simple lib to find diffs in two URIs with ability to pretty print result
The newest version!
package ru.lanwen.diff.uri.core;
/**
* User: lanwen
*/
public final class Delimiters {
public static final String WITH_DELIMITER = "((?<=%1$s)|(?=%1$s))";
public static final String BY_CHAR_SPLITTER = "";
public static final String HOST_SPLITTER = "\\.";
public static final String PATH_SPLITTER = "/";
public static final String QUERY_SPLITTER = "&";
public static final String HOST_JOINER = ".";
public static final String QUERY_NAME_VALUE_SEPARATOR = "=";
private Delimiters() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy