Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

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

I have a text file such as this;
[Microsoft MediaPlayer Settings 1.0] Script_Path=apps\microsoft\mediaplayersettings\1.0\go\mediaplayersetti +ngs10.go Information=Go Success Install_Start_Time=05/26/2004 5:55:36 PM Install_End_Time=05/26/2004 5:55:40 PM [Microsoft Windows Journal Viewer v1.5] Script_Path=apps\microsoft\journalviewer\1.5\go\journalviewer.go UTC_Timestamp=06/03/2003 17:04:10 GoScript_Checksum=66665 Install_Start_Time=05/26/2004 5:58:24 PM Install_End_Time=05/26/2004 5:58:34 PM [Company RAC 1.0] Script_Path=apps\company\remoteaccessclient\1.0\go\uninstallvs.go UTC_Timestamp=03/03/2003 18:19:05 GoScript_Checksum=175108 Product version=1.0 PM [Microsoft Resource Kit v1.0] Script_Path=apps\company\msreskitxp\go\msreskitxp.go GoScript_Checksum=69503 Product version=1.0 Install_End_Time=05/26/2004 6:00:42 PM [Microsoft Remote Console Setup v2.02] Script_Path=apps\company\msreskitxp\go\rcsetup.go UTC_Timestamp=05/24/2002 01:19:33 GoScript_Checksum=56813 [Microsoft PowerToys for Windows XP 1.00] Script_Path=apps\microsoft\powertoysforwindowsxp\1.00\go\powertoysforw +indowsxp100.go
I need to capture all the […] followed by the script path. For Example ;
[Microsoft MediaPlayer Settings 1.0] Script_Path=apps\microsoft\mediaplayersettings\1.0\go\mediaplayersetti +ngs10.go [Microsoft Resource Kit v1.0] Script_Path=apps\company\msreskitxp\go\msreskitxp.go [Microsoft PowerToys for Windows XP 1.00] Script_Path=apps\microsoft\powertoysforwindowsxp\1.00\go\powertoysforw +indowsxp100.go
I wrote this script;
use strict; use vars qw/@source_go/; open (LST,"$ARGV[0]/"."c\$/program files/common files/morgan stanley s +ysadmin/config/go.ini")||die "Cannot find Go.ini file\n"; chomp (my @go = <LST>); for my $data (@go) { my $go_rec; if ($data =~ /^[^a-z]/i) { #print "\n$data : \n"; $go_rec->{app} = $data if ($data); } if ($data =~ /^Script_path/i) { #print "$data\n"; $go_rec->{path} = $data if ($data); } push (@source_go, $go_rec); } for my $item (@source_go) { next if (! $item->{app}); print "$item->{app} : "; print "$item->{path} \n"; }
However, I do get many empty array elements in my source_go array and I feel there is more effecient way for doing this! I am asking you wise monks if there is a better way to capture the text in between the square bracketts followed by the script path?
Thanks

In reply to filtering a text file by Anonymous Monk

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 taking refuge in the Monastery: (2)
As of 2024-04-20 05:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found