dec_obrien
Newcomer
Hi,
I want a Regular Expression to allow anything except a particular word i.e. "select". How do I do this? I've tried excluding each letter individually ^[^s][^e][^l][^e][^c][^t]$ but this doesn't work if a letter happens to match e.g. "string" (the first s matches)
Thanks in advance.
I want a Regular Expression to allow anything except a particular word i.e. "select". How do I do this? I've tried excluding each letter individually ^[^s][^e][^l][^e][^c][^t]$ but this doesn't work if a letter happens to match e.g. "string" (the first s matches)
Thanks in advance.