I have this line:
stringer = str.replaceAll("[\\P{L}\\p{N}\\p{Latin}/u]", " ");
It replaces all Latin chars with space (" ") but it also replaces numeric symbols
And I don’t want it to replace numeric symbols , what do I need to change in this line to make it work?
The following should work: