RE: Problem performing a split using triangular brackets
smime.p7m
Re: Problem performing a split using triangular brackets
Stewart, I'm guessing it can be done with split, but I used a regex to do it, and that way I don't have to worry about taking out the extra ", <, and >. my $full_address='"My Name" <[EMAIL PROTECTED]>'; my ($user, $email); print "$full_address\n"; $full_address=~/^"(.+)" <(.+)>$/; $user=$1; $em