Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: How to Remove Commas ?

by tobyink (Canon)
on Mar 27, 2012 at 14:06 UTC ( [id://961936]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How to Remove Commas ?
in thread How to Remove Commas ?

The first comma was removed from each number.

The s/// operator by default removes only the first match. So:

my $var = "foobarfoobaz"; $var =~ s/foo//; say $var; # says "barfoobaz"

There are various flags you can include to alter its default behaviour though. One of the most useful is the "g" (global) flag...

my $var = "foobarfoobaz"; $var =~ s/foo//g; say $var; # says "barbaz"

Note that the slashes may be replaced with other characters, so you could equally write:

my $var = "foobarfoobaz"; $var =~ s@foo@@g; say $var; # says "barbaz"

Or even:

my $var = "foobarfoobaz"; $var =~ s{foo}{}g; say $var; # says "barbaz"

... which some people might find more readable. Though note that there are a handful of characters (hash, question mark and single quote spring to mind) that trigger special behaviours here (perlop has more details).

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-16 07:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found