I want to replace ","
with a ;
in my string.
For example:
Change
"Text","Text","Text",
to this:
"Text;Text;Text",
I've been trying the line.replace( ... , ... )
, but can't get anything working properly.
Try this:
line.Replace("\",\"", ";")