RegExp Object : JavaScript Object

JavaScript Object : RegExp Object

  1. Regular Expression is best way for pattern matching.
  2. Regular Expression Object is pattern of the character that we are going to match with String provided by user.
  3. Regular Expression is used to match pattern and to perform “search and replace” function.

Syntax : RegExp Object in JavaScript

var str = new RegExp(pattern,modifiers);
  • pattern will specify the pattern of the expression.
  • modifier will tell whether the search is
    • Case-sensitive
    • Global
    • Multi-line.
ModifierDescription
iThis Modifier is used to perform Case Insensitive Search Operation
gThis Modifier is used to perform Global Match
mThis Modifier is used to perform Multiline Matching

Brackets : Find a range of characters

ExpressionDescription
[abc]Find any character between the brackets
[^abc]Find any character not between the brackets
[0-9]Find any digit from 0 to 9
[A-Z]Find any character from uppercase A to uppercase Z
[a-z]Find any character from lowercase a to lowercase z
[A-z]Find any character from uppercase A to lowercase z
[adgk]Find any character in the given set
[^adgk]Find any character outside the given set
(red|blue|green)Find any of the alternatives specified

Metacharacters : Characters with a special meaning

MetacharacterDescription
.Find a single character, except newline or line terminator
wFind a word character
WFind a non-word character
dFind a digit
DFind a non-digit character
sFind a whitespace character
SFind a non-whitespace character
bFind a match at the beginning/end of a word
BFind a match not at the beginning/end of a word
Find a NUL character
nFind a new line character
fFind a form feed character
rFind a carriage return character
tFind a tab character
vFind a vertical tab character
xxxFind the character specified by an octal number xxx
xddFind the character specified by a hexadecimal number dd
uxxxxFind the Unicode character specified by a hexadecimal number xxxx

RegExp Object Properties

PropertyDescription
globalSpecifies if the “g” modifier is set
ignoreCaseSpecifies if the “i” modifier is set
lastIndexThe index at which to start the next match
multilineSpecifies if the “m” modifier is set
sourceThe text of the RegExp pattern

RegExp Object Methods

MethodDescription
compile()Compiles a regular expression
exec()Tests for a match in a string. Returns the first match
test()Tests for a match in a string. Returns true or false