Choose
Value = Choose ( Choice , Result #1 , Result #2 [ , ... ] )
该函数根据_Choice_的值,返回参数列表_Result #i_中的一个值。
-
如果_Choice_为1,返回_Result #1_。
-
如果_Choice_为2,返回_Result #2_,依此类推...
-
如果_Choice_小于等于0,或者没有对应于_Choice_值的_Result #i_,返回NULL。
Examples
X = 3
PRINT Choose(X, "one", "two", "three", "four")
three
X = 3
PRINT IsNull(Choose(X * 2, "one", "two", "three", "four"))
参见