[ad_1]
Pythons re module does not support variable length lookbehind.
Simple fix, avoid using lookaround assertions..
m = re.findall(r'(?s)Credit\s*(.*?)Amount', lines)
3
[ad_2]
solved value not found and look behind errors
[ad_1]
Pythons re module does not support variable length lookbehind.
Simple fix, avoid using lookaround assertions..
m = re.findall(r'(?s)Credit\s*(.*?)Amount', lines)
3
[ad_2]
solved value not found and look behind errors