I make a CSV converter, for this, I need to replace all the spaces with \";\". I have already did this step. The problem is that I have a texbox with the multiline mod. Here is
content1 = string.Concat( content1.Replace(" ", ";"), ";");
Remove all spaces then concat ";" at end