Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Str extract the word between the first and the 2nd '|' character

by radiantmatrix (Parson)
on Apr 11, 2008 at 16:41 UTC ( [id://679755]=note: print w/replies, xml ) Need Help??


in reply to Str extract the word between the first and the 2nd '|' character

Well, the regex and split will certainly work. I'd like to provide two more options for you.

The first uses index and substr. This has the advantage of being very fast (often faster than regex -- regexes can do more, though). I don't know if it's faster than split (probably not), but there may be reasons for you to use it.

my $string = '(<some word> | No Qualifier | <some word> | <some word>' +; my $start = index( $string, '|' ); # find first pipe position my $end = index( $string, '|', $start+1 ); # find next pipe position my $qualifier = substr( $string, $start, $end-$start+1 ); # extract

The second suggestion I have is a bit more robust, and leverages the module Text::CSV_XS. You'd use this approach if you have, e.g. a file of lines that look like your example -- and especially if you're interested in more than one field in that line, and/or if your data might have escaped pipes in it.

use IO::File; use Text::CSV_XS; my $csv = Text::CSV_XS->new({ sep_char=>'|' }); my $io = IO::File->new('myfile.piped.txt', '<') or die "Can't read fi +le: $!\n"; until ($io->eof) { my $row = $csv->getline($io); # read and parse line into an ARRAY +ref print "Second field says: ", $row->[1], "\n"; }

Even if your data isn't in a file, Text::CSV_XS can parse it for you; it's worth looking into.

<radiant.matrix>
Ramblings and references
The Code that can be seen is not the true Code
I haven't found a problem yet that can't be solved by a well-placed trebuchet

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-23 14:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found