JAVASCRIPT MATCHES code example
Example 1: javascript regex example match
let reg = /abc/
reg = new RegExp('abc')
let str = 'Abc abc abc'
str.match(/abc/)
str.match(/abc/g)
str.match(/abc/i)
str.match(/abc/ig)
str.match('abc', 'ig')
Example 2: js match any number string
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1]
Example 3: how to use the match function in javascript for regex
const str = 'For more information, see Chapter 3.4.5.1';
const re = /see (chapter \d+(\.\d)*)/i;
const found = str.match(re);
console.log(found);
Example 4: matches method in javascript
<ul id="birds">
<li>Orange-winged parrot</li>
<li id="h" class="endangered">Philippine eagle</li>
<li>Great white pelican</li>
</ul>
<script type="text/javascript">
var birds = document.getElementsByTagName('li');
for (var i = 0; i < birds.length; i++) {
if (birds[i].matches('#h')) {
console.log('The ' + birds[i].textContent + ' is endangered!');
}
}
</script>