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