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

8 lines
138 B
Java

// "Replace '\s' sequences with spaces" "true-preview"
class X {
void test(String str) {
if (str.matches(" a b c d")) {
}
}
}