Hi all,
How best can I convert instances of double backslashes to a single backslash in a string, but remove any occurrences of single backslash?
So this:
\|Testing|ABC:1234\\1000-1\|
Should convert to this:
|Testing|ABC:1234\1000-1|
Ideally I want to avoid a temporary replace of '\' to another character. A solution using .NET or Regular Expressions is preferred.