Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Problem with String replace in file

by philosophia (Sexton)
on Oct 22, 2007 at 17:31 UTC ( [id://646508]=note: print w/replies, xml ) Need Help??


in reply to Re: Problem with String replace in file
in thread Problem with String replace in file

if I use

s/\|\|/|\\N|/g;

it replaces || with ||. The \N seems to be an invisible newline character, and I want it to just be '\N'.
  • Comment on Re^2: Problem with String replace in file

Replies are listed 'Best First'.
Re^3: Problem with String replace in file
by meraxes (Friar) on Oct 22, 2007 at 17:36 UTC

    I suspect your problem is that you are writing back to the filehandle IN when you (presumably) only opened it for read.

    open( IN, '<', $filename ); # input open( OUT, '>', 'newfilename.txt' ); # output while ( <IN> ) { s/\|\|/|\\N|/g; print OUT; } close IN; close OUT;
    --
    meraxes
      This was correct, thank you. || is replaced by |\N| throughtout newfilename.txt.
Re^3: Problem with String replace in file
by ikegami (Patriarch) on Oct 22, 2007 at 17:40 UTC

    \n will result in a newline.
    \N will result in a syntax error.
    \\N will give \N.

    If you're not getting \N from \\N, there's something you haven't showed us.

    Update: meraxes caught the problem.

Log In?
Username:
Password:

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

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

    No recent polls found