Search found 1 match
- Sat May 17, 2008 3:00 pm
- Forum: General
- Topic: Finding non text characters in a list
- Replies: 1
- Views: 454
You need to search for anything that doesn't fit into a list of specific characters, so you use a character class match, and negate it. To match one or more alphanumeric chars, [0-9a-zA-Z]+ To match one or more non-alphanumeric chars, [^0-9a-zA-Z]+ Put that code into the textpad search, enable regex ...