How can I extract numeric data from a text file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T20:30:08Zhttp://stackoverflow.com/feeds/question/362032http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/362032/how-can-i-extract-numeric-data-from-a-text-file0How can I extract numeric data from a text file?riyaj2008-12-12T06:22:43Z2008-12-12T08:04:12Z
<p>I want the Perl script to extract a data from a text file and save it as another text file. Each line of the text file contains an URL to a jpg like "http://pics1.riyaj.com/thumbs/000/082/104//small.jpg". I want the script to extract the last 6 numbers of each jpg URL, (i.e 082104) to a variable. I want the variable to be added to a different location on each line of the new text.</p>
<p>Input text:</p>
<pre><code>text http://pics1.riyaj.com/thumbs/000/082/104/small.jpg text
text http://pics1.riyaj.com/thumbs/000/569/315/small.jpg text
</code></pre>
<p>Output text:</p>
<pre><code>text php?id=82104 text
text php?id=569315 text
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/362032/how-can-i-extract-numeric-data-from-a-text-file/362128#3621282Answer by brian d foy for How can I extract numeric data from a text file?brian d foy2008-12-12T07:40:01Z2008-12-12T07:40:01Z<p>What have you tried so far?</p>
<p>Here's a short program that gives you the meat of the problem, and you can add the rest of it:</p>
<pre>
while( )
{
s|http://.*/\d+/(\d+)/(\d+).*?jpg|php?id=$1$2|;
print;
}
</pre>
<p>This is very close to the command-line program the handles the looping and printing for you with the <code>-p</code> switch (see the <a href="http://perldoc.perl.org/perlrun.html" rel="nofollow">perlrun</a> documentation for the details):</p>
<pre><code>perl -pi.old -e 's|http://.*/\d+/(\d+)/(\d+).*?jpg|php?id=$1$2|' inputfile > outputfile
</code></pre>
http://stackoverflow.com/questions/362032/how-can-i-extract-numeric-data-from-a-text-file/362139#3621391Answer by Axeman for How can I extract numeric data from a text file?Axeman2008-12-12T07:44:56Z2008-12-12T08:04:12Z<p>I didn't know whether to answer according to what you described ("last 6 digits") or just assume that it all fits the pattern you showed. So I decided to answer both ways. </p>
<p>Here is a method that can handle lines more diverse than your examples. </p>
<pre><code>use FileHandle;
my $jpeg_RE = qr{
(.*?) # Anything, watching out for patterns ahead
\s+ # At least one space
(?> http:// ) # Once we match "http://" we're onto the next section
\S*? # Any non-space, watching out for what follows
( (?: \d+ / )* # At least one digit, followed by a slash, any number of times
\d+ # another group of digits
) # end group
\D*? # Any number of non-digits looking ahead
\.jpg # literal string '.jpg'
\s+ # At least one space
(.*) # The rest of the line
}x;
my $infile = FileHandle->new( "<$file_in" );
my $outfile = FileHandle->new( ">$file_out" );
while ( my $line = <$infile> ) {
my ( $pre_text, $digits, $post_text ) = ( $line =~ m/$jpeg_RE/ );
$digits =~ s/\D//g;
$outfile->printf( "$pre_text php?id=%s $post_text\n", substr( $digits, -6 ));
}
$infile->close();
</code></pre>
<p>However, if it's just as regular as you show, it gets a lot easier: </p>
<pre><code>use FileHandle;
my $jpeg_RE = qr{
(?> \Qhttp://pics1.riyaj.com/thumbs/\E )
\d{3}
/
( \d{3} )
/
( \d{3} )
\S*?
\.jpg
}x;
my $infile = FileHandle->new( "<$file_in" );
my $outfile = FileHandle->new( ">$file_out" );
while ( my $line = <$infile> ) {
$line =~ s/$jpeg_RE/php?id=$1$2/g;
$outfile->print( $line );
}
$infile->close();
</code></pre>