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
