Mr. Rao
Can anyone help me, how I can extract due date as it select date of issue and due date. See the screenshot. I am using get text activity in uipath.
Try creating a string Array with:
extractedString.split({"Date of issue","Due Date"},2,StringSplitOptions.None)
(I can't test now if it's write correct)
On index 0 you can find Date of issue
On index 1 you can find Due date