I have a line:
Apple1231 | C: \ asfae \ drqw \ Qwer | 2342 | 1.txt
I have the following code:
Regex line2parse = Regex.Match(line,@"(\|)(\|)(\|)(\d)");
if (line2parse < 2)
{
File.AppendAllText(workingdirform2 + "configuration.txt",
What I want to do is to replace each |after the first |with \
So I want to write
Apple1231 | C: \ asfae \ drqw \ Qwer \ 2342 \ 1.txt
user222427
source
share