js string to regex
const regex = new RegExp('https:\\/\\/\\w*\\.\\w*.*', 'g');
js string to regex
const regex = new RegExp('https:\\/\\/\\w*\\.\\w*.*', 'g');
js match any number string
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'
regular expression javascript
// Tests website Regular Expression against document.location (current page url)
if (/^https\:\/\/example\.com\/$/.exec(document.location)){
console.log("Look mam, I can regex!");
}
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