I have a problem parsing a line with regex
This is the line it will parse (called string Line)
4\:0=10.000000\:20,0.000000\:1,0\:0
this is the code to seperate it in pieces:
string[] parts = Regex.Split(Line, "\\");
but it says:
"\" invalid \ at the end of the pattern
dunno what is means...
var parts = Line.Split('\\')do?