سلام مجدد
من نیاز دارم که کاراکتر ` توی متن تشخیص بدم در اصل 3 تا کنارهم در ایتدا و 3 تا هم در انتهای بخشی از متن:
مثلا:
```
Hello World
```
lمن این کد رو دارم ولی شناسایی نمی کنه :
Dim CodeMatch As New Regex("[\`]{3}\w+[\`]{3}")
redoCode: With CodeMatch.Matches(OutPut, 0)
For I = 0 To .Count - 1
With .Item(I)
If .Success = False Then Continue For
Dim Expr As String = String.Format("<pre><code class='{1}'>{0}{2}{0}</code></pre>",
vbLf, "language-" + Language,
.Value.Substring(3, .Length - 6))
OutPut = OutPut.Remove(.Index, .Length)
OutPut = OutPut.Insert(.Index, Expr)
GoTo redoCode
End With
Next
End With