Д
Size: a a a
Д
Д
S
es
TK
S
S
S
VC
var patern = 'https\:\/\/www\.google\.com\/search'
var regex = new RegExp(patern, 'gi')
var matchRu = regex.test('https://www.google.ru/search')
var matchCom = regex.test('https://www.google.com/search')
console.log(matchRu) // false
console.log(matchCom) // true
KB
var patern = 'https\:\/\/www\.google\.com\/search'
var regex = new RegExp(patern, 'gi')
var matchRu = regex.test('https://www.google.ru/search')
var matchCom = regex.test('https://www.google.com/search')
console.log(matchRu) // false
console.log(matchCom) // true
https:\/\/www\.google\.(ru|com)\/search
VC
https:\/\/www\.google\.(ru|com)\/search
KB
https\:\/\/www\.google\.(ru|com)\/search
VC
https\:\/\/www\.google\.(ru|com)\/search
'https\:\/\/www\.google\.\(ru\|com\)\/search'
'https\:\/\/www\.google\.(ru\|com)\/search'
'https\:\/\/www\.google\.\(ru|com\)\/search'
...
DM
VC
https\:\/\/www\.google\.(ru|com)\/search
но чтоб работало 😊DM
DM
W
AD
var patern = 'https\:\/\/www\.google\.com\/search'
var regex = new RegExp(patern, 'gi')
var matchRu = regex.test('https://www.google.ru/search')
var matchCom = regex.test('https://www.google.com/search')
console.log(matchRu) // false
console.log(matchCom) // true