求一正则表达式
判断是个字符串中是否包含"qtick.com" --------------------编程问答-------------------- 用代码不是更方便 --------------------编程问答-------------------- 这为什么要用正则表达式呀.
Dim str as string="www.qtick.com"
if str.contains("qtick.com") then
end if
这样不就可以了吗 --------------------编程问答-------------------- 补充framework1.1的话,可以如下:
--------------------编程问答-------------------- 因为1.1不支持 contains 方法... --------------------编程问答--------------------
Dim str as string="www.qtick.com"
if str.IndexOf("qtick.com") <> -1 then
end if
Dim str as string="www.qtick.com"
Dim r As New Regex("qtick.com")
Dim m As Match = r.Match(str)
If m.Success Then
End If
补充:.NET技术 , ASP.NET