regex
See regex under / for regex details
Create Object
Flags
Flag
Description
g
Global search.
i
Case-insensitive search.
m
Multi-line search.
u
unicode; treat a pattern as a sequence of unicode code points
y
Functions
Array of info: ["(AERO ST)", index: 18, input: "Aerospace Studies (AERO ST)", groups: undefined];
Method
Description
RegExp
method, search for match, return array of info or null
var myRe = /d(b+)d/g; var myArray = myRe.exec('cdbbdbsbz');
RegExp
method, check for match, returns true or false
String
method, search for a match, returns an array of info or null
"Aerospace Studies (AERO ST)".match(/(.*)/) => ["(AERO ST)", index: 18, input: "Aerospace Studies (AERO ST)", groups: undefined]
String
method, that tests for a match in a string. It returns the index of the match, or -1 if the search fails.
A String
method that executes a search for a match in a string, and replaces the matched substring with a replacement substring.
A String
method that uses a regular expression or a fixed string to break a string into an array of substrings.
Last updated