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

8 lines
140 B
Java

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