How do I do a split on a string using a string as the delimiter i.e. I want to split a string using a country code as the delimiter (e.g. 44, 49, 1, 358 etc).
strStartRange = '0' + strStartRange.Split(strCountryCode)[1];
Any help would be really appreciated.
Cheers,
Mike
strStartRange = '0' + strStartRange.Split(strCountryCode)[1];
Any help would be really appreciated.
Cheers,
Mike