Ben kaynak kodu içinde bir sözcük aramak bir program kodu istiyorum yardıma ihtiyacım var.
İşte Python bir örnek:
import urllib2, re
site = "http://stackoverflow.com/"
tosearch = "Questions"
source = urllib2.urlopen(site).read()
if re.search(tosearch,source):
print "Found The Word", tosearch