本文介绍了具有单一替换的正则表达式多重模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试替换两个st".和圣".与圣".似乎以下应该有效,但它没有:
I am trying to replace both "st." and "ste." with "st". Seems like the following should work but it does not:
require("stringr")
county <- c("st. landry", "ste. geneveve", "st. louis")
str_replace_all(county, c("st\\.", "ste\\."), "st")
推荐答案
您可以使用 |
表示或"
You can use |
to mean "or"
> str_replace_all(county, "st\\.|ste\\.", "st")
[1] "st landry" "st geneveve" "st louis"
或者在基础 R
> gsub("st\\.|ste\\.", "st", county)
[1] "st landry" "st geneveve" "st louis"
这篇关于具有单一替换的正则表达式多重模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!