Hi All,
Can anyone suggest me a regex builder tool.
I am trying to extract 801VZ00000KpuhOYAR from below url
https://databricks--uat2.sandbox.lightning.force.com/lightning/r/Order/801VZ00000KpuhOYAR/view
Hi All,
Can anyone suggest me a regex builder tool.
I am trying to extract 801VZ00000KpuhOYAR from below url
https://databricks--uat2.sandbox.lightning.force.com/lightning/r/Order/801VZ00000KpuhOYAR/view
Hi @marina.dutta , you can use RegExr: Learn, Build, & Test RegEx
For your specific case, you can use the following regex pattern
(?<=Order/)[A-Za-z0-9]+(?=/view)
OR
You can utilize the Find Matching Patterns activity in UiPath to build your regex patterns.
Just to add on to the solution:
Regex 101 is my go to website. https://regex101.com/
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.