I'm attempting to remove all whitespace from a selected string search using regexp. The code works but it continues to return an error that I'm not sure how to resolve ...?
elif searchType =='2':
print " Directory to be searched: c:\Python27 "
directory = os.path.join("c:\\","SQA_log")
userstring = raw_input("Enter a string name to search: ")
userStrHEX = userstring.encode('hex')
userStrASCII = ' '.join(str(ord(char)) for char in userstring)
regex = re.compile(r"(%s|%s|%s)" % ( re.escape( userstring ), re.escape( userStrHEX ), re.escape( userStrASCII )))
choice = raw_input("Type 1 to search with whitespace. Type 2 to search ignoring whitespace: ")
if choice == '1':
for root,dirname, files in os.walk(directory):
for file in files:
if file.endswith(".log") or file.endswith(".txt"):
f=open(os.path.join(root, file))
for i,line in enumerate(f.readlines()):
result = regex.search(line)
if regex.search(line):
print " "
print "Line: " + str(i)
print "File: " + os.path.join(root,file)
print "String Type: " + result.group()
print " "
f.close()
re.purge()
if choice == '2':
for root,dirname, files in os.walk(directory):
for file in files:
if file.endswith(".log") or file.endswith(".txt"):
f=open(os.path.join(root, file))
for i,line in enumerate(f.readlines()):
result = regex.search(re.sub(r'\s', '',line))
if regex.search(line):
print " "
print "Line: " + str(i)
print "File: " + os.path.join(root,file)
print "String Type: " + result.group()
print " "
f.close()
re.purge()
This is the error it returns:
Line: 9160
File: c:\SQA_log\13.00.log
String Type: Rozelle07
Line: 41
File: c:\SQA_log\NEWS.txt
String Type: 526f7a656c6c653037
Line: 430
File: c:\SQA_log\README.txt
Traceback (most recent call last):
File "C:\SQA_log\cmd_simple.py", line 226, in <module>
SQAST().cmdloop()
File "C:\Python27\lib\cmd.py", line 142, in cmdloop
stop = self.onecmd(line)
File "C:\Python27\lib\cmd.py", line 219, in onecmd
return func(arg)
File "C:\SQA_log\cmd_simple.py", line 147, in do_search
print "String Type: " + result.group()
AttributeError: 'NoneType' object has no attribute 'group'
userStrASCII = ' '.join(str(ord(char)) for char in userstring)is probably the culprit. It adds spaces to the regular expression, and those spaces only match withregex.search(line), not withregex.search(re.sub(line, ...). – Boaz Yaniv Apr 29 '11 at 16:10