Files
2022-10-27 09:29:11 +00:00

8 lines
148 B
Java

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