Files
2022-07-29 17:55:08 +00:00

8 lines
134 B
Java

// "Replace '\s' sequences with spaces" "false"
class X {
void test(String str) {
if (str.matches("\\<caret>s+")) {
}
}
}