Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Re: ^\s not equal \S?

by delirium (Chaplain)
on Dec 04, 2003 at 15:37 UTC ( [id://312222]=note: print w/replies, xml ) Need Help??


in reply to Re: ^\s not equal \S?
in thread ^\s not equal \S?

Well, I finally did it. I ++'d an anonymous post. Good answer. I was going to say something like:

[^\s\w] means neither spaces nor words, or, everything but spaces and words, where
[\S\W] means non-spaces AND non-words, and since a space is a non-word, the meaning is similar to "non-spaces and spaces".

However, ^\s and \S should be the same, so...

$phrase =~ s/[^\s*\w*]//g;
would do the same thing as...
$phrase =~ s/[\S]|[\W]|[^*]//g;

Update: No, it wouldn't. :: smacks self in head ::

Replies are listed 'Best First'.
Re: Re: Re: ^\s not equal \S?
by SavannahLion (Pilgrim) on Dec 04, 2003 at 18:20 UTC
    Wait a minute.... I just tried your example and it still wipes out the string. It's like a nice big OR isn't it? So isn't s/[\S]|[\W]//g really the same as s/[\S\W]//g?

    Edit: A negative demark for pointing out this out? Bleh, now that isn't exactly fair. Oh well, I still haven't quite worked out what benefits voting would have.
    Anyhow, I've fiddled with the regexes and the response from delirium still doesn't quite fit in with what everything else tells me. Plugging in the two different RegExs in to the script yields completely different results. And given the examples by anon, it would naturally make sense.

    Is it fair to stick a link to my site here?

    Thanks for you patience.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (1)
As of 2024-04-25 05:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found