mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
21 lines
456 B
Markdown
21 lines
456 B
Markdown
|
---
|
||
|
id: eff92c39-8459-4f55-a34b-d924eb603056
|
||
|
title: JavaScript RegExp Test Method
|
||
|
---
|
||
|
|
||
|
test[^1] returns true/false:
|
||
|
|
||
|
``` javascript
|
||
|
let re1 = new RegExp("abc");
|
||
|
let re2 = /abc/;
|
||
|
|
||
|
console.log(re1.test("abc")) // true
|
||
|
console.log(re1.test("acd")) // false
|
||
|
console.log(/abc/.test("abcde")) // true
|
||
|
console.log(/abc/.test("abxde")) // false
|
||
|
```
|
||
|
|
||
|
# Footnotes
|
||
|
|
||
|
[^1]: <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test>
|