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
solved value not found and look behind errors
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
solved value not found and look behind errors