I want to create a regular expression for a string, if that string exit then it should return false.
i am using it on select option, so if value is Please select then it will be false
My impression:
^/(?!Please select)([a-z0-9]+)$
Got working expression as: /^(?!.*Please select)([a-zA-Z0-9]+)$/