I want to use parse((?<result>\d+),(poller)) function. How do I use that?
Parse function can extract numbers from text string. Returned value can be only number.
Let's have example that poller returns this text string "Example1Poller50Value 300".
- You may extract numbers in the string with these expressions:
1: parse((?<result>Example\d), {poller})
50: parse((?<result>\d\dVal), {poller})
300: parse((?<result>\d\d\d), {poller})
300: parse((?<result> \d+), {poller})
There are several ways how to get the specific number by using regular expressions. Basically you search by regular expression number in the string.