Reputation: 2378
i need to Delete all characters that are not either spaces, zeros or alphabetic characters in a string. My regular expression for this is name.replaceAll("[^\\s0A-Z]//", "")
. This is not working. Any suggestions?
Upvotes: 1
Views: 51