标签: ruby string split
我想使用“+”或“ - ”作为分隔符来分割字符串。
test.split(/-/)
test.split(/\+/)
我需要检查两者。
答案 0 :(得分:8)
只需使用字符类并将+和-放入其中。
+
-
puts test.split(/[+-]/);