Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hello Perl Monks!

I'm struggling with multi line matches, hoping someone can offer advice.

I have text files with data that looks like this:
123,-->456,
456,-->234,
234,-->789,
789,-->123,

I am trying to print the first three digits of the each line followed by the second three digits of the following line to my OUTFILE on a single line. So the output for the four lines above would be:
123,-->234,
456,-->789,
234,-->123,

From what I've been reading I need to use the /s or /m modifier to match a newline. I've been trying to use /s to have "." match a newline. My code looks like this:

@files=glob"SBNUM_*.txt"; open OUTFILE, ">v2test.txt" or die "Could not create outfile!"; foreach $ARG(@files){ open INFILE, "<$ARG" or die "CANNOTOPENINFILE"; while (<INFILE>) { if (m/^(\d\d\d),-->(\d\d\d),.(\d\d\d),-->(\d\d\d),/s) { print OUTFILE "\n$1,-->$4,"; } } }

I have tried a few variations but so far nothing works for me. Any advice or suggestions are greatly appreciated!

TJ


In reply to Multi Line Regex Matches... by tj999

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-23 18:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found