Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Using special characters in left part of a regex match?

by moritz (Cardinal)
on Feb 06, 2013 at 00:11 UTC ( [id://1017306]=note: print w/replies, xml ) Need Help??


in reply to Using special characters in left part of a regex match?

$var[$j] =~ s/\.\.\./\.\+/g;

The right half of an s/// substitution is not a regex, but a mere string. So if you want to construct .+ in the replacement, you need to write it as .+ and not at \.\+.

Replies are listed 'Best First'.
Re^2: Using special characters in left part of a regex match?
by LanX (Saint) on Feb 06, 2013 at 00:14 UTC
    > you need to write it as .+ and not at \.\+.

    He doesn't need to, it's no error.

    But it's better readable w/o escaping.

    Cheers Rolf

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (6)
As of 2024-04-23 20:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found