Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何确定子字符串是否包含在另一个字符串中?在 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