argx()
From Wiki077
string argx(string line, float argNum, string separators)
This function will parse and extract an argument from a line, given a string of separators. Negative values count from the end.
Examples
argx("apple, banana, carrot", 1, " ,")= "banana"
argx("/a/b/c/d", -1, "/") = "d"
