I want to use curl to view the source of a page and if that source contains a word that matches the string then it will execute a print. How would I do a if $string contains?
In VB it would be like.
dim string1 as string = "1"
If string1.contains("1") Then
Code here...
End If
Something similar to that but in Perl.
WWW::MechanizeorLWP::UserAgentto get the page and a parser likeHTML::TokeParserto get at the information you are after. – Joel Berger Aug 10 '11 at 13:38