How can I extract numeric data from a text file? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:30:08Z http://stackoverflow.com/feeds/question/362032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/362032/how-can-i-extract-numeric-data-from-a-text-file 0 How can I extract numeric data from a text file? riyaj 2008-12-12T06:22:43Z 2008-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#362128 2 Answer by brian d foy for How can I extract numeric data from a text file? brian d foy 2008-12-12T07:40:01Z 2008-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 &gt; outputfile </code></pre> http://stackoverflow.com/questions/362032/how-can-i-extract-numeric-data-from-a-text-file/362139#362139 1 Answer by Axeman for How can I extract numeric data from a text file? Axeman 2008-12-12T07:44:56Z 2008-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 (?&gt; 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-&gt;new( "&lt;$file_in" ); my $outfile = FileHandle-&gt;new( "&gt;$file_out" ); while ( my $line = &lt;$infile&gt; ) { my ( $pre_text, $digits, $post_text ) = ( $line =~ m/$jpeg_RE/ ); $digits =~ s/\D//g; $outfile-&gt;printf( "$pre_text php?id=%s $post_text\n", substr( $digits, -6 )); } $infile-&gt;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{ (?&gt; \Qhttp://pics1.riyaj.com/thumbs/\E ) \d{3} / ( \d{3} ) / ( \d{3} ) \S*? \.jpg }x; my $infile = FileHandle-&gt;new( "&lt;$file_in" ); my $outfile = FileHandle-&gt;new( "&gt;$file_out" ); while ( my $line = &lt;$infile&gt; ) { $line =~ s/$jpeg_RE/php?id=$1$2/g; $outfile-&gt;print( $line ); } $infile-&gt;close(); </code></pre>