I'm using python & i am trying to match ";" in a line:
for page in css:
f = open(page, "r")
lines = f.readlines()
count = 1
obcount = 0
ebcount = 0
probwithfile = False
for line in lines:
[B]if not re.match("^{$", line) or not re.match("^}$", line):
if not re.match(".*?;", line):
print "hi"[/B]
it prints out "hi" for every line