Hi,
i have extracted a text with OCR and i have the OcrText like below.
Row 1: P022674
Row 2: 1015
Row3: RH.RE02.GL15A
and i need each row separat how can i extract just row 2 for e.g.
Solved! Go to Solution.
Hi @CK28 !
There's an action called "Split text" where you choose the OCR-text as input and then select a delimiter, in this case it would be "new line".
It will output an Array of text values containing a separate entry for each row into a new variable called %TextList% by default
Then to access the second row in any other action use the array index like so: %TextList[1]%
This will fetch the second row (as arrays always start in position 0)
Hi @CK28 !
There's an action called "Split text" where you choose the OCR-text as input and then select a delimiter, in this case it would be "new line".
It will output an Array of text values containing a separate entry for each row into a new variable called %TextList% by default
Then to access the second row in any other action use the array index like so: %TextList[1]%
This will fetch the second row (as arrays always start in position 0)