gsub从字符串

时间:2018-06-14 19:08:39

标签: r regex

我有一个字符串可能与我想删除的\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

0 个答案:

没有答案