If you applied for this cycle, please tell us your email address
21–30 of 33 posts
Re: If you applied for this cycle, please tell us your email address
#22Re: If you applied for this cycle, please tell us your email address
#23Earlier quoted context omitted.
echo "jd; John Doe; 99; None; john.doe@whoknows.com; ; ." | cut -d ";" -f 5 ...so if someone makes mistakes it is automatically out :-) Guess the way they chose is the best though.
Or, if they're in a forgiving mood, this will produce one e-mail address per line, regardless of delimited position, (assuming the founders were already on separate lines): | sed -E 's/^.*[^[:alnum:]\._\-]([[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*)[^[:alnum:]\-\.].*$/\1/' | grep -E '^[[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*$'
Re: If you applied for this cycle, please tell us your email address
#24Re: If you applied for this cycle, please tell us your email address
#25Earlier quoted context omitted.
Or, if they're in a forgiving mood, this will produce one e-mail address per line, regardless of delimited position, (assuming the founders were already on separate lines): | sed -E 's/^.*[^[:alnum:]\._\-]([[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*)[^[:alnum:]\-\.].*$/\1/' | grep -E '^[[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*$'
Please avoid long one-liners in code blocks. It forces all of us to scroll left and right to read the rest of the page.