So, what I need to do replace this string " ' " (whitout space) for ', and the .Replace() is the ovios way, but when I try to do
txtAux = txtAux.Replace(" "'" " , "");
the 3rd " didnt represent as I expected. I try to do something like I do sometimes on .Split...
txtAux = txtAux.Replace(new string { " "'" "},new string {"'"});
Also I try to Regex, but regex im not shure to use Regular Expression.
I have this:'"' CHARSET '"'|''' CHARSET ''' I need this:"CHARSET"|'CHARSET'