从批量文本中提取电子邮件(使用正则表达式JavaScript和jQuery)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从批量文本中提取电子邮件(使用正则表达式JavaScript和jQuery)相关的知识,希望对你有一定的参考价值。
Easily grabs email addresses from a bulk text (CSV and/or some other email address-filled list/db).Example #2 takes the input (bulk text) from textarea #input and puts the clean emails in the textarea #extractedemails.
function extractEmails ( text ){ } // EXAMPLE #1 var emails = extractEmails ( HugeListWithBulkTextIncludingEmailAddresses ); document.write ( emails.join(' ') ); // EXAMPLE #2 (jQuery) $(function(){ $('#eform').submit(function(){ $('#extractedemails').val( extractEmails($('#input').val() ).join(' ')); return false; }); });
以上是关于从批量文本中提取电子邮件(使用正则表达式JavaScript和jQuery)的主要内容,如果未能解决你的问题,请参考以下文章