I have used read pdf activity and stored into one string.
In that string, need to fetch some of the value.
example is
Please can anyone help me on this, Thanks
I have used read pdf activity and stored into one string.
In that string, need to fetch some of the value.
example is
Please can anyone help me on this, Thanks
You can use :
Welcome to UiPath!
You can use the Matches activity with a regular expression to find the value you want. You can write a regex pattern that matches the text or number you need. Then you can get the matched result from the output of the Matches activity.
OR
Alternatively, you can use string methods like Split or Substring to extract the value if the format is simple.
If you provide the example text and the value to extract, I can help you write the exact expression.
like:
matches = System.Text.RegularExpressions.Regex.Matches(pdfText, “YourPatternHere”)
If helpful, mark as solution. Happy automation with UiPath!