can somebody tell me how to express a regular expression for the following two strings:
c_source_files
cpp_source_files
I would like to analyze a text file which contains text segments beginning with the mentioned strings.
It could be expressed approximately as follows:
for result in re.findall('c(.*?)pp_source_files', re.S)
# do something....
Thx in advance!