Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: How can I strip an arbitary number of leading spaces from a string?

by chromatic (Archbishop)
on Sep 25, 2000 at 20:15 UTC ( [id://33922]=note: print w/replies, xml ) Need Help??


in reply to How can I strip an arbitary number of leading spaces from a string?

Use a regex with a quantifier. Use this one if you're not sure there will be any spaces at the start of the string:

$string =~ s/^\s*//;

Use this one if you know there will be at least one:

$string =~ s/^\s+//;

{QA Editors note: As japhy pointed out, the "+" quantifier is preferable over the "*" quantifier, even if it's unknown whether the string being tested has leading whitespace or not. With s/^\s+//;, strings lacking leading whitespace simply will be passed over. Furthermore, the "+" quantifier is faster than the "*" quantifier.}

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-25 12:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found