tokenat(src, index, separator)
In your case. You want to find the first word ....
tokenat("Wolf B Online", 0, " ") ... will return "Wolf" (seperator = a space character)
Second word ...
tokenat("Wolf B Online", 1, " ") ... will return "B"
As always, anywhere there is an index, it is zero based.