Beefy Boxes and Bandwidth Generously Provided by pair Networks vroom
"be consistent"
 
PerlMonks  

Re: Looking for white spaces between words

by elusion (Curate)
on Jun 10, 2004 at 16:41 UTC ( [id://363186]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Looking for white spaces between words

Well, let's go through this a step at a time. You want to search for 2 or more consecutive spaces. There are two ways to do that: /  +/ and / {2,}/. I normally use the first one, as that's what I think looks best.

Second, you want to make a substitution. Enter $var =~ s/.../.../;. Now we have this: $foo =~ s/(  +)//;. We just need to come up with something to substitute in there.

Well, you want   for each space, so we want it repeated for the length of the spaces: " " x length $1.

Now to add that to our regular expression. The trick is to use the /e and /g modifiers, which interpret the second half of the substitution as an expression and substitute globally. $foo =~ s/(  +)/" " x length $1/ge And that's it! You're done!

Hope this helps,

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://363186]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.