我有一个字符串可能与我想删除的\1
类似。
但是我遇到了一些问题。
gsub('([\\0-9])', '', 'NY \2', perl = T) ## Looking for "NY". Works fine
## NY
gsub('([\\0-9])', '', 'N Y \2', perl = T) ## Looking for "N Y". Why does this remove the space?
## NY
gsub('([\\0-9])', '', 'N Y \2', perl = F) ## Looking for "N Y". Why does this add \00?
## N Y \002