Hi everyone I managed to pull off data through screen scraping from a website.
THe data came out to be like this
Now what I want to do is Extract the value 221250 from the first row (value can be random everytime).
Kindly suggest
Hi everyone I managed to pull off data through screen scraping from a website.
THe data came out to be like this
Now what I want to do is Extract the value 221250 from the first row (value can be random everytime).
Kindly suggest
@Ishan_Shelke ,
Does the Count of the number is always 6?
Then use a matches activiy and extract using regex
Yes Absolutely
There are multiple numbers with the count of 6. Howdo I exactly identify the number from line no 1
You can get the outputVariable(0).value
Try with this expression
System.Text.RegularExpressions.Regex.Match(YourString,"(?<=min\)\s)\d+").Tostring
Regards
Gokul
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.