我想知道如何找出另一个字符串中是否包含子字符串? 在VB.net中,我曾经写过类似的东西:
Dim s as string = textbox1.text
if s.contains("http://youtube.com/watch?v=")
//instructions
end if
基本上,我希望这样做,但它在RealBasic中的工作方式不同,所以我该如何翻译呢?
答案 0 :(得分:3)
您可以使用以下方法执行相同的操作:
Dim s as string = textbox1.text
if s.instr("http://youtube.com/watch?v=") > 0 then
//instructions
end