Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: Single Quotes - how to avoid any escape processing?

by AnomalousMonk (Archbishop)
on Aug 25, 2019 at 18:38 UTC ( [id://11104997]=note: print w/replies, xml ) Need Help??


in reply to Re: Single Quotes - how to avoid any escape processing?
in thread Single Quotes - how to avoid any escape processing?

Either of the literals  "\\\\" or  '\\\\' interpolate in a  m// or  qr// operator to a pair of backslash characters  \\ (escaped-backslash) which match a single backslash character.

c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le "print '\\'; print '\\\\'; print qq{\\}; print qq{\\\\}; ;; print qr{\\}; my $bb = '\\\\'; print qr{$bb}; ;; my $PathOnly = 'c:\Dir1\Dir2\Dir3'; ;; my @SubDirs = split(m/\\/, $PathOnly); dd \@SubDirs; ;; @SubDirs = split($bb, $PathOnly); dd \@SubDirs; " \ \\ \ \\ (?-xism:\\) (?-xism:\\) ["c:", "Dir1", "Dir2", "Dir3"] ["c:", "Dir1", "Dir2", "Dir3"]


Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-24 18:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found