@ , , , .
:
html_content = Regex.Replace(html_content, @"\b" + Replaces[i].word + "\b", substitution);
html_content = Regex.Replace(html_content, @"\b" + Replaces[i].word + @"\b", substitution);
\b , (ASCII 8). , escape-, (, \s), , , .
; , , - Regex.Escape. , , @"\b" + Regex.Escape(Replaces[i].word) + @"\b" , , .
Guffa source
share