I would like to match a string that not start with keyword "side" (case sensitive)...
I have tried like this: /^(?!side).*$/i
but don't work for me because I would like to accept for example: "side1", "side 1"
I hope I was clear
Edited:
- Expression cannot contain only the word "side" with any given case.
- If the expression has the word side it must be accompanied by something else meaning more characters.
Bye
"side 1"not start with the keyword "side"?"side 1"not start with "side"? (Note that it does start with "side".)