“Regex” Kode Jawaban

Menggunakan Regex di 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

Jawaban yang mirip dengan “Regex”

Pertanyaan yang mirip dengan “Regex”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya