The first character on every line of a file I have is a comma. How can I remove just this comma?
I have tried to use the replace method but it doesn't seem to accept special characters. Here is an example:
myRegExp.Pattern = "\n,"
strText5 =myRegExp.Replace(strText4,"\n")
The above snipper replaces the first new line char and comma with \n. How can I replace with a special character instead of a literal string?
The MSDN library doesn't seem to have the answers I need.
TIA.