$htmlData =~ s/
## $htmlData =~ s/(.+?|[^.]*)<\/title>/ print "Title found is: ".clean($1)."\n"/ei; sub clean { my $title = shift; $title =~ s![;'"\/]+!!g; return $title; }