Regular Expressions in JavaScript
Writing Regex in JavaScript and introduction to the RegExp class of objects.
We'll cover the following...
We'll cover the following...
We know that literals and positional/frequency quantifiers are used to create more elaborate patterns. In this lesson, we will how to write RegEx in JavaScript.
Syntax in JavaScript
There are two formats when writing a RegEx in JavaScript.
In the first format (line 1), use the / operator to tell JavaScript to create a RegEx. ...