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 に答える