“Regex” Kod odpowiedzi

Korzystanie z Regex w JavaScript

//Adding '/' around regex
var regex = /\s/g;
//or using RegExp
var regex = new RegExp("\s", "g");
TC5550

Regex

preg_match("/^([a-zA-Z' ]+)$/","Given_Name");
Malario

Regex

/[A-Z]/  : 'must contain one uppercase'

/([a-z])/  : 'must contain one lowercase'

/(\d)/  : 'must contain one number'

/(\W)/  : 'must contain one special character'
Didi Abel

Regex

regex cuorse
mari

Regex

Great site to verify your regular expressions: https://regexr.com/
Coder-Kyle

Regex

^The        matches any string that starts with The -> Try it!
end$        matches a string that ends with end
^The end$   exact string match (starts and ends with The end)
roar        matches any string that has the text roar in it
Wicked Worm

Odpowiedzi podobne do “Regex”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu