Consider the following code.
#/usr/bin/perl -w use strict; { local $/ = "\/\/\n"; while (<DATA>) { #chomp; print "< $_ > \n"; } } __DATA__ first row second row // another first another second // one more (3.1) one more (3.2) //
As jeffa mentioned, the separator now will look for this sequence of characters (//\n) as a record separator. During the while loop, instead of reading one line, it will read up to this special separator.
The output will be:
< first row second row // > < another first another second // > < one more (3.1) one more (3.2) // >
You can easily see where each record begins and ends.
However, there is an additional effect of setting the $/ variable. It will also affect the behaviour of the chomp function.
Try it. Uncomment the line with the chomp function, and you will get this output instead:
< first row second row > < another first another second > < one more (3.1) one more (3.2) >
The entire separating sequence will be chopped out, but the inner newlines will stay untouched, because they were not separators. Actually, they are part of the string, so the chomp function does not affect them.
HTH

update It's a good policy to use local with $/ to avoid side effects if your script is dealing with other input as well.
_ _ _ _ (_|| | |(_|>< _|

In reply to Re: What does $/ = "\/\/\n"; mean? by gmax
in thread What does $/ = "\/\/\n"; mean? by agustina_s

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.