How can I get the highlighted string from the below screenshot .?
2 Likes
Hi
Use Screen scrapping method from design tab and get the output with a variable named str input
And then use a assign activity Like this
stroutput = Split(strinput,” “)(1).ToString
Cheers @Pranav_Singh1
2 Likes
- use get text activity and save it in string variable say out_Txt
- out_Txt.Split(" "c)(1).ToString
1 Like
You can do the String manupulation. Please read this article for your reference.
cheers
Happy learning
2 Likes