My regex after a String.Format(c#):
(^{0})|({0}[-!#$%&'}()+,./:;<=>?@
\{{|~"])|([-!#$%&'()*+,./}:;<=>?@_
{|~"]{0})|( {0} )
When the regex is coming through the debugger it looks like this:
(^ Word )|( Word [-!#$%&'}()+,./:;<=>?@
\{|~"])|([-!#$%&'()*+,./}:;<=>?@_
{|~"] Word )|( Word )
The curly braces for my string.format have been replaced with spaces, which obviously breaks my regex. Does anyone know how to solve this problem??