Hi All, I am new to UiPath.Facing issue with string manipulation. Input -“Supplier No. 5039932 PDS Services” and output needed as 5039913 . Note : PDS Services text is not fixed , It may change.
Please help
Hi All, I am new to UiPath.Facing issue with string manipulation. Input -“Supplier No. 5039932 PDS Services” and output needed as 5039913 . Note : PDS Services text is not fixed , It may change.
Please help
Hi,
Can you try the following expression?
System.Text.RegularExpressions.Regex.Match(yourString,"\d+").Value
Or
System.Text.RegularExpressions.Regex.Match(yourString,"(?<=Supplier No. )\d+").Value
Regards,
Use this regx
str_output =
System.Text.RegularExpressions.Regex.Match(INPUT,“(\d+”)
Hey thanks a lot! It worked
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.