AKMonkeyboy
IS-IT--Management
I have a string that contains (maybe) "; ". If it contains that, I want it removed. I have code that searches for and removes 1 character (a "0" or a "-" for example), but I am unable to figure out how to remove instances of 2 characters (I can't run the code twice and peel off one at a time - that won't work.
In a nutshell I'd like
1st word; ; ;2nd word; ; 3rd word;
to appear as
1st word; 2ndword; 3rd word;
Any ideas?
In a nutshell I'd like
1st word; ; ;2nd word; ; 3rd word;
to appear as
1st word; 2ndword; 3rd word;
Any ideas?