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

java - Regular Expression check length

I have been trying to make a regular expression for my mobile phones but I can't seem to get it to work:

Here are the conditions for my regular expression:

  • must start with 09
  • total length is 9

Here is my regular expression:

[0]{1}[9]{1}[0-9]{7}

Valid mobile number 091123456

Invalid mobile number 0991234567 || 09912345

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Easiest way:

^09[0-9]{7}$

Explanation:

^09 => begins by 09

[0-9] => any character between 0 and 9

{7} exactly seven times

$ => Ends with the latest group ([0-9]{7})


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

...