Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^4: regular expression not matching

by ghosh123 (Monk)
on Mar 13, 2013 at 06:59 UTC ( [id://1023127]=note: print w/replies, xml ) Need Help??


in reply to Re^3: regular expression not matching
in thread regular expression not matching

Well, I told you, that was wrongly pasted. I was trying with something and did not clean my code before pasting. So it was.
Basically that means some word followd by a '_' and '-'.
But yes, that is not going to work , it was wrong.

Replies are listed 'Best First'.
Re^5: regular expression not matching
by Anonymous Monk on Mar 13, 2013 at 07:07 UTC

    Basically that means some word followd by a '_' and '-'.

    Well actually no it doesn't, see perlintro#More complex regular expressions

    item 8. matches a single character in the given set, so it matches a single word character or dash, but only one character

    if you want to match it more than once, you have to use a quantifier like item 1 or item 2 from the quantifier list; or the second Quantifiers list in perlre

    So you might write

    m{^Users of (.+?): \(Total of (.+?) licenses issued; Total of (.+?) li +cense in use\)$}im m{^Users of ([^:]*): \(Total of (.+?) licenses issued; Total of (.+?) +license in use\)$}im m{^Users of ([^:]+): \(Total of (\d+) licenses issued; Total of (\d+) +license in use\)$}im m{^Users of ([\w\_\-]+): \(Total of (\d+) licenses issued; Total of (\ +d+) license in use\)$}im m{^Users of ([\w\_\-]+): \(Total of (\d+) licenses issued; Total of (\ +d+)}im

    Modern Perl ch 6 is also an introduction to regex

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-25 10:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found