You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am trying to import a CSV that has, in the description of the transaction, a newline.
I tried to replace ROW.G "\n" " ", but it didn't seem to work.
For now I'm working around it with regexpMatch ROW.G "[^\n]*", but that means loosing the part after the newline.
Expected behavior
Either automatically replace newlines with spaces in every ROW.x, or offer a template helper that can do that (either extending replace, unless it already does it and I couldn't figure it out; or adding a new one).
The text was updated successfully, but these errors were encountered:
Describe your Environment
Paisa Version: 0.7.0
Describe the bug
I am trying to import a CSV that has, in the description of the transaction, a newline.
I tried to
replace ROW.G "\n" " "
, but it didn't seem to work.For now I'm working around it with
regexpMatch ROW.G "[^\n]*"
, but that means loosing the part after the newline.Expected behavior
Either automatically replace newlines with spaces in every
ROW.x
, or offer a template helper that can do that (either extendingreplace
, unless it already does it and I couldn't figure it out; or adding a new one).The text was updated successfully, but these errors were encountered: