Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: remove spaces after join operation

by lakssreedhar (Acolyte)
on Jul 26, 2013 at 11:27 UTC ( [id://1046488]=note: print w/replies, xml ) Need Help??


in reply to Re: remove spaces after join operation
in thread remove spaces after join operation

This error Can't modify join or string in substitution (s///) at out.pl line 5, near "s/\s*(\.\(\))\s*/$1/g;" is being shown

  • Comment on Re^2: remove spaces after join operation

Replies are listed 'Best First'.
Re^3: remove spaces after join operation
by Loops (Curate) on Jul 26, 2013 at 11:37 UTC
    Ah, is your version of Perl too old to support the /r modifier? It wont work without it. I Suppose:
    my $txt = join ' ',@first_sentence; $txt =~ s/\s*([.()])\s*/$1/g; print $txt;
    Updated to simplify regex as suggested by hdb

      ya its working now

Log In?
Username:
Password:

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

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

    No recent polls found