http read intiger value from response result
hello, how to read intiger value from response result?

hello, how to read intiger value from response result?

I have a similar string response from an http device, which returns for example "Credit: 0.010".
I added a Double to the command, an on the Regex I've added (?<=Credit: ).*$ which returns a Double with 0.01 value.
So I assume that if you add something like (?<=result=).*$ it will probably also work.
Best rergards
Hello,
You can try to add an Integer, and on the token write the following
\d
In practice it should extract the digit to that integer.
Please try it out and tell me if it worked.
Best regards