show/hide this revision's text 3 deleted 17 characters in body; edited title

How can I extract numeric data from a text file and save the new text file?

i

I want the perl Perl script to extract a data from a text file and save it as another txt text file. each Each line of the text file contains an url URL to a jpg like "http://pics1.riyaj.com/thumbs/000/082/104//small.jpg", i http://pics1.riyaj.com/thumbs/000/082/104//small.jpg". I want the script to extract the last 6 numbers of each jpg url.. URL, (i.e 082104) to a variable. i I want the variable to be added to a diff different location on each line of the new text.i.e old

Input text

line1 ":

text http://pics1.riyaj.com/thumbs/000/082/104/small.jpg text
" 
line2 "text http://pics1.riyaj.com/thumbs/000/569/315/small.jpg text
"

new

Output text

line1  ":

text php?id=82104 text
"
line2  "text php?id=569315 text
"

Thanks

show/hide this revision's text 2 improved formatting

i want the perl script to extract a data from a text file and save it as another txt file. each line of the text file contains an url to 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 diff location on each line of the new text. i.e old text

line1 "text http://pics1.riyaj.com/thumbs/000/082/104//small.jpghttp://pics1.riyaj.com/thumbs/000/082/104/small.jpg text" 
line2 "text http://pics1.riyaj.com/thumbs/000/569/315//small.jpghttp://pics1.riyaj.com/thumbs/000/569/315/small.jpg text"

new text

line1  "text php?id=82104 text"
line2  "text php?id=569315 text"

Thanks

show/hide this revision's text 1

extract numeric data from a text file and save the new text file

i want the perl script to extract a data from a text file and save it as another txt file. each line of the text file contains an url to 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 diff location on each line of the new text. i.e old text line1 "text http://pics1.riyaj.com/thumbs/000/082/104//small.jpg text" line2 "text http://pics1.riyaj.com/thumbs/000/569/315//small.jpg text"

new text line1 "text php?id=82104 text" line2 "text php?id=569315 text"

Thanks