Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

exclude underscore from alpha numeric regex

I want use w regex for to allow alpha numeric but I don't want underscore _ to be part of it. Since _ is included in w. So I have coded like this but doesn't work, what is my mistake?

(/^rogerw{2,3}[0-9a-z]/i)

I am expecting any character other than A-Z or 1-2 to be exclude

ex - roger3_2 or roger46_ or roger2_

but

roger54 or roger4a or roger455 or rogerAAA

are to be ok

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You could try something like:

[^_W]+

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...