RegExp
For an introduction to regular expressions, read the Regular Expressions chapter in the JavaScript Guide.
Last updated
Was this helpful?
For an introduction to regular expressions, read the Regular Expressions chapter in the JavaScript Guide.
Last updated
Was this helpful?
Strings are useful for holding data that can be represented in text form. Some of the most-used operations on strings are to check their , to build and concatenate them using the , checking for the existence or location of substrings with the method, or extracting substrings with the method.
Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the and methods of , and with the , , , , , and methods of . This chapter describes JavaScript regular expressions.
Using a regular expression literal, which consists of a pattern enclosed between slashes, as follows:
Regular expression literals provide compilation of the regular expression when the script is loaded. If the regular expression remains constant, using this can improve performance.
Or calling the constructor function of the object, as follows:
Special characters in regular expressions.
Characters / constructs
Corresponding article
\
, .
, \cX
, \d
, \D
, \f
, \n
, \r
, \s
, \S
, \t
, \v
, \w
, \W
, \0
, \xhh
, \uhhhh
, \uhhhhh
, [\b]
^
, $
, x(?=y)
, x(?!y)
, (?<=y)x
, (?<!y)x
, \b
, \B
(x)
, (?:x)
, (?<Name>x)
, x|y
, [xyz]
, [^xyz]
, \
Number
*
, +
, ?
, x{
n
}
, x{
n
,}
, x{
n
,
m
}
\p{
UnicodeProperty
}
, \P{
UnicodeProperty
}