Extract specific numbers from a string

Hi @Jalan_Pranav

How about this expression?

Use assign activity

Str1 = Split("Forms: 45 (10 shown)","(")(1)

image

Use Assign Activity

System.text.RegularExpression.Regex.Match(Str1,"\d+").Tostring

Regards
Gokul

3 Likes