如何识别输入框值是否为掩码?

时间:2016-05-24 23:23:41

标签: vbscript asp-classic

如何识别传递给另一个页面的输入框值是否为掩码?

我有这样的代码:

number = Request("Cnumber")   'value from an input box

Request("Cnumber")的输出如下:

xxxxxxxxxxxx5555

我想查看number这样的值:

if number(having an X value on the left) then
    use another value
end if

我如何在If声明条件下应用它?

1 个答案:

答案 0 :(得分:2)

正如@John指出的那样,只需检查字符串开头的第一个字符:

If Left(Request("Cnumber"), 1) = "x" Then
    'use another value
End If

如果您想使比较不区分大小写,请添加LCase

If LCase(Left(Request("Cnumber"), 1)) = "x" Then
    'use another value
End If