Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一个简单的 gem 可以安装以仅以模糊的方式在 HTML 视图中显示电子邮件地址?
如果将电子邮件地址转换为图像,那将是完美的。
如果这是不可能的,用“-at-”简单地替换@?
或者我怎么能使用这个线程的解决方案:
如何保护我的电子邮件地址免受垃圾邮件攻击
使用sub或gsub实现相同有什么问题
sub
gsub
"example@example.com".sub("@","-at-") #=> example-at-example.com "example@example.org".sub("@","{at}") #=> example{at}example.org