作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要匹配以两个不同的元音开头的任何“r”。例如,“我们的”或“ pear ”将匹配,但“bar”或“aar”将不匹配。我确实设法匹配了两个不同的元音,但是我仍然无法确定后面的'r'的后向条件(...
)。 (?<=...)r
和...\\Kr
均不会产生任何结果。有任何想法吗?
x <- c('([aeiou])(?!\\1)(?=(?1))')
y <- c('our','pear','bar','aar')
y[grepl(paste0(x,collapse=''),y,perl=T)]
## [1] "our" "pear"`
最佳答案
这两个解决方案似乎有效:
为什么不这样:
x <- '(?<=a[eiou]|e[aiou]|i[aeou]|o[aeiu]|u[aeio])r'
y[grepl(x, y, perl=T)]
\K
方式:
x <- '([aeiou])(?!\\1)[aeiou]\\Kr'
y[grepl(x, y, perl=T)]
x <- 'r(?<=a[eiou]r|e[aiou]r|i[aeou]r|o[aeiu]r|u[aeio]r)'
x <- 'r(?<=[aeiou][aeiou]r)(?<=a[eiou]r|e[aiou]r|i[aeou]r|o[aeiu]r|u[aeio]r)'
关于regex - R:环顾四周,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29605725/
我是一名优秀的程序员,十分优秀!