in reply to Scanning Log Files

You could use a regular expression:
use warnings; use strict; while (<DATA>) { if (/(\d+)/) { print "$1\n" } } __DATA__ processed='destination(df_suu=1234567' processed='destination(d_mysql_suu=1234567'

Prints:

1234567 1234567