14 Important Standard Regular Expressions
Regular Expressions are mainly used for pattern matching i.e. mostly UI level validations like E-mail-Id, password, number-field validations, etc., and are language independent, concise and really interesting (when they are tough to form). I am not going to tell you how to form or use regular expression (also known as regex) as there are many really good websites available out there like - http://www.regular-expressions.info http://regexlib.com/ http://coding.smashingmagazine.com/2009/06/01/essential-guide-to-regular-expressions-tools-tutorials-and-resources/ How to use :- In Javascript, to search a pattern in a string variable, use - var stringToMatch = "this is my pattern"; if(stringToMatch.search(/pattern/i)!= -1) alert("Pattern matched."); else alert("Pattern not matched."); OR in java, make use of java.util.regex.Pattern and java.util.regex.Matcher OR simply String class's methods matches(), replaceAll() and split(). Fo...