If the number is always a certain number of digits (for example, 2 digits), you can use $right(%text,2) to get it.

If it varies, then using tokens would be the best way.

If that is the only space, you can use:
$gettok(%text,2,32)

If it's always the same number of spaces (let's say there are 4 spaces in the text, then a space, then the number), you can use:
$gettok(%text,6,32)

(that 6 is 1 more than the number of spaces).

Or, if you have a random number of spaces and the number is not always the same number of digits, you can use:
$gettok(%text,$gettok(%text,0,32),32)

That will always grab the last spaced item, no matter how many spaces there are.


Invision Support
#Invision on irc.irchighway.net