mirror of
https://github.com/corda/corda.git
synced 2024-12-30 17:57:02 +00:00
9bb3d6b972
git-subtree-dir: sgx-jvm/avian git-subtree-mainline:f978eab8d1
git-subtree-split:09e4fe60d0
103 lines
3.4 KiB
Java
103 lines
3.4 KiB
Java
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
|
|
public class Regex {
|
|
private static void expect(boolean v) {
|
|
if (! v) throw new RuntimeException();
|
|
}
|
|
|
|
private static Matcher getMatcher(String regex, String string) {
|
|
return Pattern.compile(regex).matcher(string);
|
|
}
|
|
|
|
private static void expectMatch(String regex, String string) {
|
|
expect(getMatcher(regex, string).matches());
|
|
}
|
|
|
|
private static void expectNoMatch(String regex, String string) {
|
|
expect(!getMatcher(regex, string).matches());
|
|
}
|
|
|
|
private static void expectGroups(String regex, String string,
|
|
String... groups) {
|
|
Matcher matcher = getMatcher(regex, string);
|
|
expect(matcher.matches());
|
|
expect(matcher.groupCount() == groups.length);
|
|
for (int i = 1; i <= groups.length; ++i) {
|
|
if (groups[i - 1] == null) {
|
|
expect(matcher.group(i) == null);
|
|
} else {
|
|
expect(groups[i - 1].equals(matcher.group(i)));
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void expectFind(String regex, String string,
|
|
String... matches)
|
|
{
|
|
Matcher matcher = getMatcher(regex, string);
|
|
int i = 0;
|
|
while (i < matches.length) {
|
|
expect(matcher.find());
|
|
expect(matches[i++].equals(matcher.group()));
|
|
}
|
|
expect(!matcher.find());
|
|
}
|
|
|
|
private static void expectSplit(String regex, String string,
|
|
String... list)
|
|
{
|
|
String[] array = Pattern.compile(regex).split(string);
|
|
expect(array.length == list.length);
|
|
for (int i = 0; i < list.length; ++ i) {
|
|
expect(list[i].equals(array[i]));
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
expectMatch("a(bb)?a", "abba");
|
|
expectNoMatch("a(bb)?a", "abbba");
|
|
expectNoMatch("a(bb)?a", "abbaa");
|
|
expectGroups("a(a*?)(a?)(a??)(a+)(a*)a", "aaaaaa", "", "a", "", "aaa", "");
|
|
expectMatch("...", "abc");
|
|
expectNoMatch(".", "\n");
|
|
expectGroups("a(bb)*a", "abbbba", "bb");
|
|
expectGroups("a(bb)?(bb)+a", "abba", null, "bb");
|
|
expectFind(" +", "Hello , world! ", " ", " ", " ");
|
|
expectMatch("[0-9A-Fa-f]+", "08ef");
|
|
expectNoMatch("[0-9A-Fa-f]+", "08@ef");
|
|
expectGroups("(?:a)", "a");
|
|
expectGroups("a|(b|c)", "a", (String)null);
|
|
expectGroups("a|(b|c)", "c", "c");
|
|
expectGroups("(?=a)a", "a");
|
|
expectGroups(".*(o)(?<=[A-Z][a-z]{1,4})", "Hello", "o");
|
|
expectNoMatch("(?!a).", "a");
|
|
expectMatch("[\\d]", "0");
|
|
expectMatch("\\0777", "?7");
|
|
expectMatch("\\a", "\007");
|
|
expectMatch("\\\\", "\\");
|
|
expectMatch("\\x4A", "J");
|
|
expectMatch("\\x61", "a");
|
|
expectMatch("\\078", "\0078");
|
|
expectSplit("(?<=\\w)(?=\\W)|(?<=\\W)(?=\\w)", "a + b * x",
|
|
"a", " + ", "b", " * ", "x");
|
|
expectMatch("[0-9[def]]", "f");
|
|
expectNoMatch("[a-z&&[^d-f]]", "f");
|
|
expectSplit("^H", "Hello\nHobbes!", "", "ello\nHobbes!");
|
|
expectSplit("o.*?$", "Hello\r\nHobbes!", "Hello\r\nH");
|
|
try {
|
|
expectSplit("\\b", "a+ b + c\nd", "", "a", "+ ", "b", " + ", "c", "\n", "d");
|
|
} catch (RuntimeException e) {
|
|
// Java 8 changed the semantics of split, so if we're on 8, the
|
|
// above will fail and this will succeed:
|
|
expectSplit("\\b", "a+ b + c\nd", "a", "+ ", "b", " + ", "c", "\n", "d");
|
|
}
|
|
expectSplit("\\B", "Hi Cal!", "H", "i C", "a", "l!");
|
|
expectMatch("a{2,5}", "aaaa");
|
|
expectGroups("a??(a{2,5}?)", "aaaa", "aaaa");
|
|
expectGroups("a??(a{3}?)", "aaaa", "aaa");
|
|
expectNoMatch("a(a{3}?)", "aaaaa");
|
|
expectMatch("a(a{3,}?)", "aaaaa");
|
|
}
|
|
}
|