Page 1 of 1

multi-line e-mail address

Posted: Sun May 13, 2012 7:41 pm
by Peciura
This is a simple solution to split long email address to 2 or more lines. Idea is to insert zero-width spaces before symbols:

Code: Select all

._-@

Code: Select all

<div style='width:7em;'>
{'/([^\.\_\-\@])([\.\_\-\@])/'|preg_replace:'$1&#8203;$2':'very.long_email-address@spam.spm'}
</div>

Re: multi-line e-mail address

Posted: Mon May 14, 2012 4:03 pm
by Wishbone
Will this copy and paste OK? Or will it paste zero-length spaces?