C
Craig Buchanan
I have a string in the format "name" <address> that i would like to split
into an array of two values. name should be the first value, address the
second value. what does my regex pattern need to be? If the regex doesn't
find occurances of two double quotes and an occurance of < and an occurance
of >, will i get a null string array?
btw, is there a difference between:
dim X() as string
and
dim X as string() ?
Thanks,
Craig Buchanan
into an array of two values. name should be the first value, address the
second value. what does my regex pattern need to be? If the regex doesn't
find occurances of two double quotes and an occurance of < and an occurance
of >, will i get a null string array?
btw, is there a difference between:
dim X() as string
and
dim X as string() ?
Thanks,
Craig Buchanan