Help with Regex DOM?

ShabbySquire

Power Member
Jr. VIP
Joined
Nov 30, 2011
Messages
720
Reaction score
174
I'm hoping someone can help a regex newb.

I'm looking to escape the word: of
Also tying to escape a line of (exact) characters: 1 - 30

I'm not entirely sure if this is viable?
 
Explain better. I know regex but didn't understand what you said. Too vague.
 
No problems. As you know, special characters can be escaped(?) by the \
I'm hoping to get regex to ignore the actual word: of, and also ignore: 1 - 30

I'm not sure if this is possible, but I could be wrong!
 
So, you need to exclude it from your regex search.
I think this is how you do it:
Code:
^(?!of|[1..30])
That is just my guess of how to exclude the word "of" and numbers 1-30.
 
So, you need to exclude it from your regex search.
I think this is how you do it:
Code:
^(?!of|[1..30])
That is just my guess of how to exclude the word "of" and numbers 1-30.

Thanks for the regex. Will try it later.
 
Back
Top