Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Removing spaces, again.

by larryl (Monk)
on Mar 16, 2001 at 01:40 UTC ( [id://64794]=note: print w/replies, xml ) Need Help??


in reply to Removing spaces, again.

Your pattern is doing a greedy match, so (.*) matches everything from "LCD" to the end, including trailing whitespace. The regex is still happy because the \s*$ at the end is satisfied by matching nothing.

Try m/^\s*(\S*)/ instead. No need to add the optional whitespace match at the end of the pattern as long as you know you only want to match up to (but not including) the first (optional) whitespace.

Log In?
Username:
Password:

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

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

    No recent polls found