For example: 4587/1235/7554 And then replaced 4587; 1235; 7554
Remove spaces and in place of the slash, put semicolons, how do you do this in C #?
For example: 4587/1235/7554 And then replaced 4587; 1235; 7554
Remove spaces and in place of the slash, put semicolons, how do you do this in C #?
string string1 = "44 / 44 / 55";
string string2 = string1.Replace(" / ",";");