Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: help for my tool...

by ig (Vicar)
on Aug 22, 2012 at 19:39 UTC ( [id://989122]=note: print w/replies, xml ) Need Help??


in reply to help for my tool...

There are various ways you could do this. One is to read the entire file into a string and then use split to break it into parts. You should read split carefully, it has many features.

use strict; use warnings; my $text = <<EOF; MAIN LR R1,R2 . . BALR R1,LABEL#1 L R1,VAR1, . . BAL R3,LABEL#2 . . EJECT LABEL#1 . . LABEL#2 . . EOF my @parts = split(/^(BAL.*$)/m, $text); my $n = 1; open(my $fh, '>', "file$n") or die "file$n: $!"; foreach my $part (@parts) { print $fh $part; if($part =~ m/^BAL/) { $n++; open($fh, '>', "file$n") or die "file$n: $!"; } }

Replies are listed 'Best First'.
Re^2: help for my tool...
by suno (Acolyte) on Aug 31, 2012 at 09:47 UTC
    thanks for th help perl monks... it was really helpful...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-03-29 05:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found