Visible Characters, Except for Comma and Quote
Posted: Tue May 08, 2018 5:51 pm
I wanted to do a search and replace of all visible characters (Space thru Tilde), except for Comma and Quote, and replace it with a lowercase x.
I tried to use this, but I missed some things.
[x20-x21x23-x2Bx2D-x7E]
Then I tried this, which also missed some things.
([x20-x21]|[x23-x2B]|[x2D-x7E])
Should I really be using this, which also excludes x?
([x20-x21]|[x23-x77]|[x79-x2B]|[x2D-x7E])
I tried to use this, but I missed some things.
[x20-x21x23-x2Bx2D-x7E]
Then I tried this, which also missed some things.
([x20-x21]|[x23-x2B]|[x2D-x7E])
Should I really be using this, which also excludes x?
([x20-x21]|[x23-x77]|[x79-x2B]|[x2D-x7E])