LOTUSSCRIPT 言語
' A string that is not interpretable as a number v = "Twelve" Print IsNumeric(v) ' Output:False
' A string that is interpretable as a number v = "12" Print IsNumeric(v) ' Output:True
関連項目