Files

8 lines
149 B
Java

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