我的数据就像 -17 + 3 2-6 我需要做的是将每一个分成两个数字 例如: -17 + 3进入" -17"和" 3" 2-6进入" 2"和" -6" 通过使用R
非常感谢!答案 0 :(得分:0)
text = '-17+6'
pattern = '[+-]\\d+'
matches = gregexpr(pattern, text)
regmatches(text, matches)
# [[1]]
# [1] "-17" "+6"