如何删除在某些子开始线[]byte,在Ruby平时我做这样的事情:
[]byte
Ruby
lines = lines.split("\n").reject{|r| r.include? 'substring'}.join("\n")
如何做到这一点Go?
Go
相关分类