If the result is string you can use parse function, which can extract numbers from string using regex.
- But the function is limited for only simple results. It can return only one number(group). And also the regex match cannot be very complicated.
parse((?<result>\d+), {poller_name})
\d+ is regex expression
{poller_name} is your desired poller
Roman