javascript new Regexp with flag
new RegExp(/ab+c/, 'i') // literal notation
new RegExp('ab+c', 'i') // constructor
const pattern='some pattern';
new RegExp(pattern)
javascript new Regexp with flag
new RegExp(/ab+c/, 'i') // literal notation
new RegExp('ab+c', 'i') // constructor
const pattern='some pattern';
new RegExp(pattern)
javascript regular expression flags
g : matches the pattern multiple times.
i : makes the regex case insensitive.
m : enables multi-line mode. ...
u : enables support for unicode.
s : short for single line, it causes the . to also match new line characters.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us