Getting particular string from the text

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
  1. use get text activity and save it in string variable say out_Txt
  2. out_Txt.Split(" "c)(1).ToString
1 Like

Hi @Pranav_Singh1

You can do the String manupulation. Please read this article for your reference.

cheers :smiley:

Happy learning :smiley:

2 Likes