For example, I want to extract rows in a block, however the Get Text Activity returns a whole block.
This is a invoice.
You can split the whole output string with newline (β\nβ) parameter. This will help you to retrieve each line item.
Thank you! Itβs a good idea! I split them into a string array, but how can I do to abandon the first string in the array which is the title?
If the title will be always come in first row, then you can skip the first item of array using some sort of conditions like counter or array[0]th position.
1 Like
thanks!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.