Hi all, I have a text file that shoots out data that I need converted into table format. I’m not sure which nodes to use / how to do this. My first thought is regex but I’m not super familiar with those commands yet.
I opt to use the Regex Extractor node here because it gives a lot of visibility and control if you are not that familiar with it yet.
It’s available here in case you do not have it yet:
In this case, I entered (?:Passed Doc Id |Order |Cust Ref )([0-9]+). This looks for the words Doc Id OR Order OR Cust Ref followed by space and a sequence of numbers of indefinite length. This will capture the required digits in Group 1.