R正则表达式删除除撇号之外的所有标点符号

前端之家收集整理的这篇文章主要介绍了R正则表达式删除除撇号之外的所有标点符号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Remove all punctuation except apostrophes in R4个
我试图从除撇号之外的字符串中删除所有标点符号.这是我的exastr2< -
str2 <- "this doesn't not have an apostrophe,.!@#$%^&*()"
gsub("[[:punct:,^\\']]"," ",str2 )
# [1] "this doesn't not have an apostrophe,.!@#$%^&*()"

我究竟做错了什么?

在使用标点符号进行测试之前,可以使用“否定先行断言”来删除任何撇号.
gsub("(?!')[[:punct:]]","",str2,perl=TRUE)
# [1] "this doesn't not have an apostrophe"
原文链接:https://www.f2er.com/regex/357248.html

猜你在找的正则表达式相关文章