I am trying to take a string like this: 3; 8; 11; 19; 22; 27;
And remove 19; from the string and piece it back together so it then reads: 3; 8; 11; 22; 27;
I have been dinking around with using Split() to do this with mixed results and I am just curious if maybe there is a better option.
And remove 19; from the string and piece it back together so it then reads: 3; 8; 11; 22; 27;
I have been dinking around with using Split() to do this with mixed results and I am just curious if maybe there is a better option.