搜索文本文件

时间:2015-06-27 18:39:48

标签: vb.net text-search

我是编程新手,我想知道如何在文本中进行搜索 如下。

我有一个包含以下内容的文字

  

我今天赢了,好像他知道真相今天我很清醒,好像要死了   与事物没有更多的亲密关系

我想要的并搜索此文字有

这个词
  

如果你

的话

我想存储一个字符串,开头是#34; truth"直到单词具有意义字符串

  

今天我很清醒,好像你已经死了,没有

并省略其余文本。

我已经尝试搜索单词" true"但没有奏效。

1 个答案:

答案 0 :(得分:0)

你的问题有点不清楚。

如果要在字符串中找到单词,可以使用INSTR函数

Dim Position as integer = 0
Dim SampleText as String = "I won today as if he knew the truth Today I am lucid as if to die And had no more kinship with things"
'
Position = INSTR(SampleText, "truth")
if Position > 0 Then
  'matched
  msgbox("Word 'truth' found starting at position " & Position)
Else
  'not matched
  msgbox("Word 'truth' not found in text!")
End if