如何从ASP中的字符串中查找特定值

时间:2011-02-10 15:36:30

标签: asp-classic vbscript

如何从ASP中的字符串中找到特定值?

dim temp="alpha,bravo,charlie"

如何判断temp中是否存在'alpha'?

谢谢

2 个答案:

答案 0 :(得分:5)

您可以使用函数instr来检查字符串。

有关更多说明,请点击此链接:

http://www.w3schools.com/Vbscript/func_instr.asp

答案 1 :(得分:2)

Instr适用于快速解决方案,如果你的strins很大或者你必须使用thisoften,你最好将字符串转换为数组,然后使用过滤器找到teh值

所以

dim temp, aTemp
temp="alpha,bravo,charlie" 
aTemp = split(temp,",")
aFound = Filter(aTemp , "alpha") ' aFound (0) contains "alpha" or is an empty array if not found.

Grtz