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.
我有一个电子邮件地址数组列表,我想删除“;”之后的所有内容
我试过了。但这似乎不起作用。
我将如何遍历数组并删除“;”之后的所有内容 在我看来。
尝试:
["aaaa;bbb"].map { |e| e.gsub(/;.*/, ';') }
来自文档:gsub返回 str 的副本,其中所有出现的模式都替换了第二个参数。
gsub
所以这个正则表达式将匹配;后面的任何字符,所以你必须;作为第二个参数传递。
;