P
Paul
Hi,
What would be the best way to remove the following from the start of a
string...
"A1", "A2, "A3", "A4", "A5", "B1, "B2", "B3", "B4", "B5", "C1", "C2", "C3",
"C4", "C5", "D1","D2","D3","D4","D5".
I hope I explained that right. A string will have one of the above strings
as its first two characters and I need them removing from the string.
I tried this...
string1 = replace(string1,"A1","")
string1 = replace(string1,"A2","")
string1 = replace(string1,"A3","")
etc..
and although it works its not very efficient as I would need to do this for
all the above strings!
Cheers,
Paul
Seth Rowe are you out there?!
What would be the best way to remove the following from the start of a
string...
"A1", "A2, "A3", "A4", "A5", "B1, "B2", "B3", "B4", "B5", "C1", "C2", "C3",
"C4", "C5", "D1","D2","D3","D4","D5".
I hope I explained that right. A string will have one of the above strings
as its first two characters and I need them removing from the string.
I tried this...
string1 = replace(string1,"A1","")
string1 = replace(string1,"A2","")
string1 = replace(string1,"A3","")
etc..
and although it works its not very efficient as I would need to do this for
all the above strings!
Cheers,
Paul
Seth Rowe are you out there?!