It may be that this is best solved with regular expressions, of which I know almost nothing (ready to learn though!). I'm pulling attachments from users emails and want to create a directory for their email address which I have stored in a string.
For the sake so simplicity I'll say its:
Code:
strEmail = Item.From
"John Doe" <johndoe@noemail.com>
How can I strip out the "johndoe@noemail.com"?
Ideas?? Thanks in advance, as always.