in reply to Re: Perl HTML Form elements Filter
in thread Perl HTML Form elements Filter
update: This has the known bug of failing if the tag spans multiple lines. Maybe some other ones, too. :)while(<>) { if (/(input|textarea|select).*?name="?(.*?)"?[\s>]/gsi) { prin +t "$2\n" } }
-mark
|
|---|