Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Need a regular expression to check the first digit

by davido (Cardinal)
on May 19, 2021 at 14:55 UTC ( [id://11132741]=note: print w/replies, xml ) Need Help??


in reply to Need a regular expression to check the first digit

Let's analyze this regex:

/^[5]+$/
  • ^ indicates the pattern anchors to the beginning of the string.
  • [...] is a character class. It allows you to create an alternate of choice where a single character in the target string matches any one of the characters within the class.
  • [5] is a character class comprised of only one character, which isn't very useful in this case. You're using a "match any of these" construct but asserting that "these" are any of the following: "5". You could do away with the character class and just put a 5 there.
  • + is a quantifier. It says match one or more of the previous atom. In this case, match [5] one or more times.
  • $ is an anchor to the end of string.

Taken in full, you're saying starting from the beginning and ending at the end of the target string, match one or more 5 characters, and nothing else. You didn't allow for the trailing digits. Since you anchor to the end of the string, you're asserting that the string can only contain a bunch of 5s.

If you want to allow for eight trailing digits that are not 5s, you need to specify that too:

/^5\d{8}$/

Now you're saying the target has to start with a 5 and then must match eight more digits, at which point the target string must end.


Dave

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11132741]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-20 00:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found