i need only the BIC value, i am using regex but its taking everyting after “BIC:”
How can i change the regex to have only what between “BIC:” and “BIC into the clipbord”
website :https://www.ibancalculator.com/
i need only the BIC value, i am using regex but its taking everyting after “BIC:”
How can i change the regex to have only what between “BIC:” and “BIC into the clipbord”
website :https://www.ibancalculator.com/
HI @Soudios
How about this expression?
System.Text.RegularExpressions.Regex.Match(Inputstr,"\S+(?=\s+BIC)").Tostring.Trim
Regards
Gokul
System.Text.RegularExpressions.Regex.Match("BIC: BFCRBDCDC BIC","(?s)BIC:\s(.*)\s\sBIC").Groups(1).Match(Inputstr,"(?s)BIC:\s(.*)\s\sBIC").Group
Hi @Soudios
Use assign activity and pass the above expression . Can you share the text here
What activity are you using? Can you share the sample input here
Try to use Matches activity
Regards
Gokul
Hi,
It might be easier to use Click and GetFromClipboard instead of GetText, as the following. Can you try this?
Regards,
Can you shows us the input for Matches activity @Soudios
here the input
Hi,
Can you try this syntax?
(?<=(\s*)BIS:\s).*(?=\sBIS)
Regards,
Bhagyshri
Can you able to share the screenshot of your workflow @Soudios
Here
@Bhagyashri_Wani
i have this issue
HI @Soudios
Can you share the Output of the Get Text activity.
Can you remove the Value in the Assign activity and try
Regards
Gokul
Not like this After the Get Text activity, Put a log message and pass the Out of the get text activity and send a screenshot @Soudios
Great , If you have query related to this topic @Soudios