Invalid escape sequence (valid one's are...)
807588Feb 20 2009 — edited Feb 20 2009I am trying to match first name/last name:
--> atleast 3 alphabetical characters, without spaces
I get "Invalid escape sequence (valid one's are...) " error when I write:
if(!wdContext.currentInputValuesElement().getFirstName().trim().matches("[a-zA-Z]{3, }[^\s]"))
What is wrong above.
Thanks
Seenu.