in reply to Scanning Log Files
use warnings; use strict; while (<DATA>) { if (/(\d+)/) { print "$1\n" } } __DATA__ processed='destination(df_suu=1234567' processed='destination(d_mysql_suu=1234567' [download]
Prints:
1234567 1234567 [download]