Articles tagged: RegExp
Found 27 documents
- Web/JavaScript/Guide/Regular_Expressions Regular expressions are patterns used to match character combinations in strings. In JavaScript, ...
- Web/JavaScript/Reference/Global_Objects/RegExp The RegExp constructor creates a regular expression object for matching text with a pattern.
- Web/JavaScript/Reference/Global_Objects/RegExp/@@match The [@@match]() method retrieves the matches when matching a string against a regular expression.
- Web/JavaScript/Reference/Global_Objects/RegExp/@@replace The [@@replace]() method replaces some or all matches of a this pattern in a string by a ...
- Web/JavaScript/Reference/Global_Objects/RegExp/@@search The [@@search]() method executes a search for a match between a this regular expression and a ...
- Web/JavaScript/Reference/Global_Objects/RegExp/@@species The RegExp[@@species] accessor property returns the RegExp constructor.
- Web/JavaScript/Reference/Global_Objects/RegExp/@@split The [@@split]() method splits a String object into an array of strings by separating the string ...
- Web/JavaScript/Reference/Global_Objects/RegExp/compile The deprecated compile () method is used to (re-)compile a regular expression during execution ...
- Web/JavaScript/Reference/Global_Objects/RegExp/exec The exec() method executes a search for a match in a specified string. Returns a result array, ...
- Web/JavaScript/Reference/Global_Objects/RegExp/flags The flags property returns a string consisting of the flags of the current regular expression ...
- Web/JavaScript/Reference/Global_Objects/RegExp/global The global property indicates whether or not the " g " flag is used with the regular expression. ...
- Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase The ignoreCase property indicates whether or not the " i " flag is used with the regular ...
- Web/JavaScript/Reference/Global_Objects/RegExp/input The non-standard input property is a static property of regular expressions that contains the ...
- Web/JavaScript/Reference/Global_Objects/RegExp/lastIndex The lastIndex is a read/write integer property of regular expression instances that specifies ...
- Web/JavaScript/Reference/Global_Objects/RegExp/lastMatch The non-standard lastMatch property is a static and read-only property of regular expressions ...
- Web/JavaScript/Reference/Global_Objects/RegExp/lastParen The non-standard lastParen property is a static and read-only property of regular expressions ...
- Web/JavaScript/Reference/Global_Objects/RegExp/leftContext The non-standard leftContext property is a static and read-only property of regular expressions ...
- Web/JavaScript/Reference/Global_Objects/RegExp/multiline The multiline property indicates whether or not the " m " flag is used with the regular ...
- Web/JavaScript/Reference/Global_Objects/RegExp/n The non-standard $1, $2, $3, $4, $5, $6, $7, $8, $9 properties are static and read-only ...
- Web/JavaScript/Reference/Global_Objects/RegExp/prototype The RegExp.prototype property represents the prototype object for the RegExp constructor.
- Web/JavaScript/Reference/Global_Objects/RegExp/rightContext The non-standard rightContext property is a static and read-only property of regular expressions ...
- Web/JavaScript/Reference/Global_Objects/RegExp/source The source property returns a String containing the source text of the regexp object, and it ...
- Web/JavaScript/Reference/Global_Objects/RegExp/sticky The sticky property reflects whether or not the search is sticky (searches in strings only from ...
- Web/JavaScript/Reference/Global_Objects/RegExp/test The test() method executes a search for a match between a regular expression and a specified ...
- Web/JavaScript/Reference/Global_Objects/RegExp/toSource The toSource() method returns a string representing the source code of the object.
- Web/JavaScript/Reference/Global_Objects/RegExp/toString The toString() method returns a string representing the regular expression.
- Web/JavaScript/Reference/Global_Objects/RegExp/unicode The unicode property indicates whether or not the " u " flag is used with a regular expression. ...