1

我想知道如何确定子字符串是否包含在另一个字符串中?在 VB.net 中,我曾经写过类似的东西:

Dim s as string = textbox1.text
if s.contains("http://youtube.com/watch?v=")
   //instructions
end if

基本上,这是我想要做的,但它在 RealBasic 中的工作方式不同,那么我该如何翻译呢?

4

1 回答 1

3

您可以使用以下方法执行相同的操作:

Dim s as string = textbox1.text    
if s.instr("http://youtube.com/watch?v=") > 0 then
   //instructions
end
于 2013-05-07T21:12:26.763 回答