Assignment: Define and Describe Regular Expressions
Review and research the following terms or concepts describing JQuery usage and discussing the role of JQuery in web application development.
- What commands in Javascript are used to process Regular Expressions? Please list the commands and describe their functionality.
-
"String.search( ); = uses an expression to search for a match, and returns the position of the match
String.replace( ); = eturns a modified string where the pattern is replaced
String.match( ); = searches a string for a match against a regular expression, and returns the matches, as an Array object.
RegExp.test( ); = searches a string for a pattern, and returns true or false, depending on the result.
RegExp.exec( ); = searches a string for a specified pattern, and returns the found text."-- Credit--
http://www.w3schools.com/js/js_regexp.asp
- What commands in JQuery are used to process Regular Expressions? Please list the commands and describe their functionality.
-
There are no specific jQuery regular expressions.