Need to exclude blocks that are located with a regular expression when preceded with # and any number of spaces. Here is a example file
&START A=23 ... more data ...
B=24 &END
# &START A=34 ... more data ...
B=24 &END
&START .... block 3 of data across multiple lines .... &END
&START .... block 4 of data across multiple lines .... &END
The following regular expression does not exclude the commented entry as I expected -
(?!#\s*)&START(.+?)&END
The desire is to walk through the entries and the file for processing. Python code to do this (which works well other than comment lines making it through) -
f=open(filename)
data=f.read()
f.close()
pattern=re.compiler(r'(?!#\s*)&START(.+?)&END, re.DOTALL)
get_entries = pattern.findall
for entry in get_entries(data):
# process the entry
print entry
Likely a basic oversight as I am green when it comes to regular expressions. Many thanks for anyone who can make a suggestion.
