How to get the values in the middle of get text activity

HI,

image

By using the get text method I get the value show in the image,

By I want the value is after the Min { 0 } that integer value i want

Is it any possibility?

we can do with regex:
grafik
(?<=Min: )\d+

or doing it stringbase by splitting on comma and then splitting the Min: 0 Token on :

1 Like

@Rajiduraikannu_Santhosh_G

As @ppr suggested that was a good solution for your problem statement as below

System.Text.RegularExpressions.Regex.Match(“GetTextVariable”,“(?<=Min: )\d+”)

Also, you can try as below

String.Split(",“c)(1).Split(”:"c)(1)

Hope this will help you

Thanks

1 Like

Hi @Srini84 @ppr ,
Thank you So much, It’s Working.

Regards,
Santhosh

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.