# Don't strip the tags #$html =~ s/<.*?>//gs ; my (@users) = $html =~ /by\s[^>]+>([^<]+)/gs ; # Or this if there are Perlmonks with "<" in their username my (@users) = $html =~ m[by\s[^>]+>(.*?)]gs ;