Here is an example that demonstrates how I would approach something like this:
cat foo.txt
fred barney betty wilma dino
george jane elmo judy
#!/usr/bin/perl -wl
use strict;
# Pull out all those words containg the letter e
my $file = 'foo.txt';
open my $fh, '<', $file or die "Cannot open $file:$!";
my @matches;
while (my $line = <$fh>) {
chomp($line);
my @wanted = $line =~ m/\b(\w*?e\w*?)\b/g;
push @matches, @wanted;
}
print for @matches;
Which prints..
fred
barney
betty
george
jane
elmo
Hope this heps,
Darren :)
-
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.
|