Find any character

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
gcotterl
Posts: 252
Joined: Wed Mar 10, 2004 8:43 pm
Location: Riverside California USA

Find any character

Post by gcotterl »

What regular expression do I type in the FIND WHAT box to find a string with any alphanumeric character (except a space) in position 49?
ben_josephs
Posts: 2464
Joined: Sun Mar 02, 2003 9:22 pm

Post by ben_josephs »

Using "Posix" regular expression syntax,
^.{48}[a-z0-9]
gcotterl
Posts: 252
Joined: Wed Mar 10, 2004 8:43 pm
Location: Riverside California USA

Post by gcotterl »

Fantastically great!

Thanks
Post Reply