标签: ruby string
是否有比@string.gsub(/regex/, '')更简洁的方式从字符串中剪切图案?
@string.gsub(/regex/, '')
我知道#slice存在,但我需要反过来,返回未切片的部分。
#slice
"one\ntwo\three".gsub(/\n/, '') #=> "onetwothree"
也许只是我,但我的代码中充满了这些gsub(/regex/, '')位。我希望有类似
gsub(/regex/, '')
"one\ntwo\three".trim(/\n/)
答案 0 :(得分:2)
不,这是你能做的最简单。