我想知道我怎么能发现如果一个子字符串包含在另一个字符串?在VB.net中,我曾经这样写:
Dim s as string = textbox1.text
if s.contains("http://youtube.com/watch?v=")
//instructions
end if
基本上,这是我想要做的但它在RealBasic中不一样,我怎么翻译呢?
您可以使用:
Dim s as string = textbox1.text
if s.instr("http://youtube.com/watch?v=") > 0 then
//instructions
end