in reply to URL Regex Matching, again

Would it be sufficient to determine whether the URL ends in .html (or .htm)?
print( ($string =~ /.html?$/) ? "Complete\n" : "Incomplete\n" );

The PerlMonk tr/// Advocate