ruby 从字符串中收集电子邮件的ruby脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 从字符串中收集电子邮件的ruby脚本相关的知识,希望对你有一定的参考价值。

#data contact info mining
class Emails
    
    def getallcom(text)
        return text.scan(/[a-zA-Z0-9.]+\@[a-zA-Z]+\.com/)
    end
    def getalledu(text)
        return text.scan(/[a-zA-Z0-9.]+\@[a-zA-Z]+\.com/)
    end
end


#   
#=> :getallemails
#   getallemails("  f   jweinst1@berkeley.com   foobar@foo.com")
#=> ["jweinst1@berkeley.com", "foobar@foo.com"]

以上是关于ruby 从字符串中收集电子邮件的ruby脚本的主要内容,如果未能解决你的问题,请参考以下文章

使用 Ruby 脚本发送电子邮件 - 501 5.5.4 无效地址

从数组中删除仅大小写不同的字符串值(Ruby)

Ruby:如何从标准输入解析电子邮件 mime

GIT & Ruby:如何从 ruby​​ 脚本中取消设置 GIT_DIR 变量?

Ruby 脚本内的 Ruby 就地编辑

Ruby Regex 从电子邮件地址中提取域