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

Re^2: Perl oddities (s/// doesn't DWIM in map)

by Joost (Canon)
on Mar 01, 2005 at 14:06 UTC ( [id://435435]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl oddities (s/// doesn't DWIM in map)
in thread Perl oddities

Good point. More generic: Having no built-in s/// that returns a modified copy is annoying.

  • Comment on Re^2: Perl oddities (s/// doesn't DWIM in map)

Replies are listed 'Best First'.
Re^3: Perl oddities (s/// doesn't DWIM in map)
by heptadecagram (Novice) on Mar 01, 2005 at 15:40 UTC

    True. I'd like to see a switch:

    my $modified = s/$pattern/$change_to/gr;

    Where /r stands for 'replaced', or somesuch.

      Would that be equivalent to
      (my $modified = $_) =~ s/$pattern/$change_to/g;
      or
      s/$pattern/$change_to/g; my $modified = $_;
      ?

      Caution: Contents may have been coded under pressure.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-16 21:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found