I have the following string below that is causing me a lot of grief.
"John","\Jane","\Jerry"
The declaration in Visual C++ for the above string is as follows:
String ^mynames="John\",\"\\\Jane\",\"\\Jerry";
The problem is I am not able to split each name by the characters ","\
.
I need to store the result in an array:
array<String^>^ data_line;
But the following line doesn't work
data_line=mynames->Split('\",\"\\\');