HI All
I encountered one problem when extracted string from text file.
eg: string = “Oct 22 2017 18:24:31: src inside:192.168.48.223/33991 dst outside:10.176.40.5/53 by access-group”
I want to extract substring ‘192.168.48.223/33991’ and ‘10.176.40.5/53’ from string.
Instead of this statement You also Use the below Expression (\d{1,3}).(\d{1,3}).(\d{1,3}).(\d{1,3})\/(\d{1,4})
It return Only inside and Outside value that can be stored in an Array Note\/ This Not a Alphabet its a Symbol \ and /
Iam relatively New to UIPath.I have a scenario here.from one of the web pages Iam retrieving a invoice number .For example MS789695.
Now I want only 789695 out of it.But the length of the number is not fixed always,But one thing is always I have to remove first 2 characters out of the extracted one.
Thanks Sarathi,Actually I used substring as the value iam extracting is dynamic.Iam using substring(2,6).But iam not getting the proper results.correct me
Iam using get text activity.In one browser iam getiing the correct value like cm12345 but when iam using the same function in another browser iam getting the result like \n\n\n\ncm12345\n\n.
why like this and how to write substring function.