投稿者 太一  (社会人) 投稿日時 2011/11/16 07:19:40
正規表現で文字検索をしているのですが、何故かスルーされてしまいます。

どこが間違っているのか教えてもらえないでしょうか?



タグ
<span class="date">2011-11-10</span>




Dim strString As String = str1
If strString.IndexOf("span\sclass=""date""") <> -1 Then

  
  retIndex = str1.IndexOf("span\sclass=""date""")    
     TextBox.Text = str1.Substring(retIndex + 17, 11)

  MessageBox.Show("ok")

End If


もしくは


Dim strString As String = str1
If strString.IndexOf("span class=""date""") <> -1 Then

 retIndex = str1.IndexOf("span class=""date""")   
  TextBox.Text = str1.Substring(retIndex + 17, 11)

   MessageBox.Show("ok")

End If



VB2005です。