Once you've broken the list into individual elements, I'd use something
like:
email = rereplace(element, '.*<(.*?)>', '\1')
This replaces everything before the open bracket, the open bracket, and
the end bracket with just what is in between the brackets.
--Ben Doom
Nate Willard wrote:
> Morni
Is this along the lines of what you were thinking of?
.*$",
EmailArray[i])>
#HTMLEditFormat(ArrayToList(EmailArray))#
--
Edward A Savage Jr - "Sonny"
Senior Software Engineer
Creditdiscovery, LLC
~
How about
Looping over the email listing and doing a
Thisemail = mid([fullemail], find("<", [fullemail]) + 1, len([fullemail] -
1)
Basically you are saying that the 'true email' is between '<' and '>'.
I am certain that there is probably a much faster regexp for this, but this
is what comes to m
> I'm currently working to add an address book importer
> (PLAXO) to a site. The address book importer returns
> the emails in the input box as follows: "FNAME LNAME"
> <[EMAIL PROTECTED]>, "FNAME LNAME" <[EMAIL PROTECTED]>,
> "FNAME LNAME" <[EMAIL PROTECTED]>,
I can think of a couple of ways to a
4 matches
Mail list logo