Help in getting data from string

Hello
I am a string and the value in string is dynamic. I need to extract value from that string below is the example of string.

Count: PGI 04 201-396 mode: Unknown alarm: Unknown interface: integrated
Count: PG 12 201-300 mode: Unknown alarm: Unknown interface: Unknown
Count: DG 12 201-300 mode: Unknown alarm: Unknown interface: Unknown
Count: AHG 12 201-300 mode: Unknown alarm: Unknown interface: Unknown

Here from above string i need to extract value which i marked in Italic.

Please help me out

Hi,

Can you try the following expression?

System.Text.RegularExpressions.Regex.Matches(yourString,"(?<=Count:\s*).*?(?=\s*\d{3}-\d{3})")

Sequence1.xaml (6.8 KB)

Regards,

1 Like

In StudioX, you can use the Text to Left / Right activity to extract the text, as follows:

Not working for
Count: PG 12 1-200 mode: Unknown alarm: Unknown
This string

Hi @Puneet_Singh1 - Are you trying this in Studio or StudioX? Just making sure…

Studio 2020.4

@Puneet_Singh1 - please check here