0

我有一个原始单词列表,并替换为我想将某些句子中原始单词的出现替换为替换单词的单词。

例如我的清单:

theabove      the above
myaddress     my address

所以句子“This is theabove”。将变为“这是上面的”。

我在 VB 中使用正则表达式,如下所示:

Dim strPattern As String
Dim regex As New RegExp

regex.Global = True

If Not IsEmpty(myReplacementList) Then
  For intRow = 0 To UBound(myReplacementList, 2)
       strReplaceWith = IIf(IsNull(myReplacementList(COL_REPLACEMENTWORD, intRow)), " ", varReplacements(COL_REPLACEMENTWORD, intRow))
       strPattern = "\b" & myReplacementList(COL_ORIGINALWORD, intRow) & "\b"
       regex.Pattern = strPattern

       TextToCleanUp = regex.Replace(TextToReplace, strReplaceWith)
  Next
End If

我将列表 myReplacementList 中的所有条目与我要处理的文本 TextToReplace 进行循环,并且替换必须是整个单词,因此我在原始单词周围使用了“\b”标记。

它工作得很好,但是当原始单词包含一些特殊字符时我遇到了问题,例如

overla)   overlay

我试图逃避模式中的 ) 但它不起作用:

\boverla\)\\b

我不能用那个词替换句子“这个词是重叠的”。到“这个词与那个词重叠。”

不确定缺少什么?正则表达式是上述场景的方法吗?

4

1 回答 1

1

我会使用 string.replace()。这样你就不必逃避特殊字符..只有这些:“”!有关示例,请参见此处:http: //www.dotnetperls.com/replace-vbnet

如果您正在寻找模式,Regex 是很好的选择。或重命名您的 mp3 收藏 ;-) 等等。但在你的情况下,我会使用 string.replace()。

于 2013-04-16T05:27:21.400 回答