http://qs321.pair.com?node_id=180502


in reply to capturing names

After Dave's regex (and suggestion about the comment) try
for ($data){ if (m#/([^/]*\.bld)$#) { $count=$count+1; $hold[$count]=$1; print "$hold[$count]\n"; } }
Aseidas