Skip to main content

Posts

Showing posts with the label Regex

Regex

Regular expressions - JavaScript | MDN Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the exec() and test() methods of RegExp, and with the match(), matchAll(), replace(), replaceAll(), search(), and split() methods of String. This chapter describes JavaScript regular expressions. Creating a regular expression You construct a regular expression in one of two ways: 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  RegExp  object, as follows: let re = new RegExp('ab+c'); Using the constructor function provides runtime compilation of the regular expression. Use the constructor function when you