如何使用 Java 扫描文本文件中的潜在电子邮件地址?
How can I scan for potential e-mail addresses in a text file using Java?
读取文件并使用正则表达式将您的模式与任何可能的电子邮件地址进行匹配。
read file and use regex to match your pattern with any possible email address.
使用正则表达式。这是我用过的。
(([\w-]+.)+[\w-]+|([a-zA-Z]{1}|[\w-]{2,})) ((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0- 9]{1,2}|25[0-5]|2[0-4][0-9])。 ([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0-9] {1,2}|25[0-5]|2[0-4][0-9])){1}| ([a-zA-Z]+[\w-]+.)+[a-zA-Z]{2,4})|^((+\d{1,3}(-| )?(? \d)?(-| )?\d{1,5}) |((?\d{2,6})?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{ 1,5}){0,1}
Use regular expressions. This is the one I have used.
(([\w-]+.)+[\w-]+|([a-zA-Z]{1}|[\w-]{2,})) ((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]). ([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])){1}| ([a-zA-Z]+[\w-]+.)+[a-zA-Z]{2,4})|^((+\d{1,3}(-| )?(?\d)?(-| )?\d{1,5}) |((?\d{2,6})?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{1,5}){0,1}
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
读取文件并使用正则表达式将您的模式与任何可能的电子邮件地址进行匹配。
read file and use regex to match your pattern with any possible email address.
使用正则表达式。这是我用过的。
(([\w-]+.)+[\w-]+|([a-zA-Z]{1}|[\w-]{2,}))
((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0- 9]{1,2}|25[0-5]|2[0-4][0-9])。
([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0-9] {1,2}|25[0-5]|2[0-4][0-9])){1}|
([a-zA-Z]+[\w-]+.)+[a-zA-Z]{2,4})|^((+\d{1,3}(-| )?(? \d)?(-| )?\d{1,5})
|((?\d{2,6})?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{ 1,5}){0,1}
Use regular expressions. This is the one I have used.
(([\w-]+.)+[\w-]+|([a-zA-Z]{1}|[\w-]{2,}))
((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).
([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9]).([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])){1}|
([a-zA-Z]+[\w-]+.)+[a-zA-Z]{2,4})|^((+\d{1,3}(-| )?(?\d)?(-| )?\d{1,5})
|((?\d{2,6})?))(-| )?(\d{3,4})(-| )?(\d{4})(( x| ext)\d{1,5}){0,1}