开发者

Regular Expression to check string is in particular format

can someone please help me to compose a regular expression to check an alphanumeric string is in a particular format.

First character must be a letter and the next 6 characters are numbers...eg x279833 or X279833 are both valid.

This is wh开发者_C百科at i've come up with - ^[A-Za-z]{1}[0-9]{6}$

regards


Yours should work just fine (you edited it in after I wrote this answer), but the {1} is completely unnecessary. You can shorten it a little to use \d instead of [0-9].

If you want to make sure the entire string is that format, use:

^[a-zA-Z]\d{6}$


something like:

^[a-zA-Z]\d{6}$
  • [a-zA-Z] matches alpha chars
  • \d matches a numeric char
  • {6} will match 6 occurrences of the previous token, in this case 6 numeric chars


I don't think I can say anything that hasn't already been considered except to think about international characters. If your first character can also be an alphabetic character from other character sets, you may want to use a predefined character class instead. In that case, you'd have something like this:

^[[:alpha:]]\d{6}$
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜