Hello Daniel,
I have some test files were the line feed is \r\n instead of \n. Even when the \r is removed the parsing does not work.
For example I modified:
r"(:20:(?P<transaction_reference>[^\s:]+)\s*)?"
to
r"(:20:(?P<transaction_reference>[^\s:]).)"
then it works fine
thanks for the work
Tom
Hello Daniel,
I have some test files were the line feed is \r\n instead of \n. Even when the \r is removed the parsing does not work.
For example I modified:
r"(:20:(?P<transaction_reference>[^\s:]+)\s*)?"
to
r"(:20:(?P<transaction_reference>[^\s:]).)"
then it works fine
thanks for the work
Tom