Dup Ver Goto 📝

JsRegExp

PT2/aw/lang/js does not exist
To
8 lines, 45 words, 382 chars Page 'JsRegExp' does not exist.

See this at mozilla

Case Insensitive

const re = /ab+c/i; // literal notation
const re = new RegExp('ab+c', 'i'); // constructor with string pattern as first argument
const re = new RegExp(/aw/ab+c/, 'i'); // constructor with regular expression literal as first argument