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
992 views
in Technique[技术] by (71.8m points)

regex - Regular expression to Allow starting letters and then numbers or letters

I need regular Expression which should start with letters only and later it can contain numbers or letters.But starting should contain letters only. I have used

^[a-zA-Z]*[a-zA-Z0-9]+$

But it is not working. Can anyone please help me out?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

You used the wrong cardinality. Use + (at least one) instead of * (0 or more), as shown below:

^[a-zA-Z]+[a-zA-Z0-9]*$

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

...