- Home
- /
- Tutorials
- /
- JavaScript Tutorial
- /
- JavaScript Regex Methods
JavaScript Regular Expressions
JavaScript Regex Methods
Several string and regex methods work together to search and replace.
Some belong to the pattern and some to the string.
Which one to use depends on what you need back.
Example
Example
javascript
const text = "cat bat cat";
console.log(/cat/.test(text));
console.log(text.search(/bat/));
console.log(text.match(/cat/g).length);