I've a trouble with regexp in such situation: I need to extract (and replace) all dots from such construction:
any_symbols->white_space->x.(or xx. or Xx. or xX. or xy. or yy. etc.)->white_space->any_symbol_not_upper_case_and_not_a_digit
for example
1990 x. abcd - extract dot
ffff xx.abcd - extract dot
1990 x. Abcdef - do not extract
abcd x. Abcd - do not extract
abcd x. 1990 - do not extract
So I've constructed such regexp:
(?<=\s[XxYy]{1,2})\.(?>=\s+?[^\p{javaUpperCase}\d])
But it doesn't matches. So what's wrong?
Thanks
P.S.
After
String skipPtrn="(?<=\\s[РрГг]{1,2})\\.(?>=\\s+?[^\\p{javaUpperCase}\\d])";
originalText=originalText.replaceAll(skipPtrn, " ");
I'm still finding in text:
1673 р. з'явився
У 1623 р. через
у 1925 р. ("Вiсник
etc.