Wednesday 12 June 2019

C# - Remove all commas

Watch this example on YouTube

       


string a = "a,a a,,d,";
            a = a.Replace(",", "");

No comments:

Post a Comment