在R中,是否可以从正则表达式匹配中提取组捕获?据我所知,grep
,grepl
,regexpr
,gregexpr
,sub
或gsub
都没有返回群组捕获。
我需要从编码的字符串中提取键值对:
\((.*?) :: (0\.[0-9]+)\)
我总是可以做多个全匹配greps,或做一些外部(非R)处理,但我希望我能在R中完成所有操作。是否有一个功能或包提供这样的功能这样做?
答案 0 :(得分:108)
stringr
包的 str_match()
会执行此操作。它返回一个字符矩阵,其中匹配中的每个组都有一列(并且整个匹配中有一列):
> s = c("(sometext :: 0.1231313213)", "(moretext :: 0.111222)")
> str_match(s, "\\((.*?) :: (0\\.[0-9]+)\\)")
[,1] [,2] [,3]
[1,] "(sometext :: 0.1231313213)" "sometext" "0.1231313213"
[2,] "(moretext :: 0.111222)" "moretext" "0.111222"
答案 1 :(得分:43)
gsub从你的例子中做到了这一点:
gsub("\\((.*?) :: (0\\.[0-9]+)\\)","\\1 \\2", "(sometext :: 0.1231313213)")
[1] "sometext 0.1231313213"
你需要双重转义引号中的\ s然后它们适用于正则表达式。
希望这有帮助。
答案 2 :(得分:28)
尝试regmatches()
和regexec()
:
regmatches("(sometext :: 0.1231313213)",regexec("\\((.*?) :: (0\\.[0-9]+)\\)","(sometext :: 0.1231313213)"))
[[1]]
[1] "(sometext :: 0.1231313213)" "sometext" "0.1231313213"
答案 3 :(得分:17)
gsub()可以执行此操作并仅返回捕获组:
但是,为了使其正常工作,您必须明确选择gsub()帮助中提到的捕获组之外的元素。
(...)未替换的字符向量'x'的元素将保持不变。
因此,如果要选择的文本位于某个字符串的中间,则在捕获组之前和之后添加。*应该只允许您返回它。
gsub(".*\\((.*?) :: (0\\.[0-9]+)\\).*","\\1 \\2", "(sometext :: 0.1231313213)")
[1] "sometext 0.1231313213"
答案 4 :(得分:3)
我喜欢perl兼容的正则表达式。也许其他人也会这样做......
这是一个函数,它执行perl兼容的正则表达式,并匹配我习惯的其他语言中函数的功能:
regexpr_perl <- function(expr, str) {
match <- regexpr(expr, str, perl=T)
matches <- character(0)
if (attr(match, 'match.length') >= 0) {
capture_start <- attr(match, 'capture.start')
capture_length <- attr(match, 'capture.length')
total_matches <- 1 + length(capture_start)
matches <- character(total_matches)
matches[1] <- substr(str, match, match + attr(match, 'match.length') - 1)
if (length(capture_start) > 1) {
for (i in 1:length(capture_start)) {
matches[i + 1] <- substr(str, capture_start[[i]], capture_start[[i]] + capture_length[[i]] - 1)
}
}
}
matches
}
答案 5 :(得分:2)
这就是我最终解决这个问题的方法。我使用两个单独的正则表达式匹配第一个和第二个捕获组并运行两个gregexpr
调用,然后拉出匹配的子字符串:
regex.string <- "(?<=\\().*?(?= :: )"
regex.number <- "(?<= :: )\\d\\.\\d+"
match.string <- gregexpr(regex.string, str, perl=T)[[1]]
match.number <- gregexpr(regex.number, str, perl=T)[[1]]
strings <- mapply(function (start, len) substr(str, start, start+len-1),
match.string,
attr(match.string, "match.length"))
numbers <- mapply(function (start, len) as.numeric(substr(str, start, start+len-1)),
match.number,
attr(match.number, "match.length"))
答案 6 :(得分:2)
根据stringr
包中的建议,可以使用str_match()
或str_extract()
来实现。
改编自手册:
library(stringr)
strings <- c(" 219 733 8965", "329-293-8753 ", "banana",
"239 923 8115 and 842 566 4692",
"Work: 579-499-7527", "$1000",
"Home: 543.355.3679")
phone <- "([2-9][0-9]{2})[- .]([0-9]{3})[- .]([0-9]{4})"
提取和组合我们的小组:
str_extract_all(strings, phone, simplify=T)
# [,1] [,2]
# [1,] "219 733 8965" ""
# [2,] "329-293-8753" ""
# [3,] "" ""
# [4,] "239 923 8115" "842 566 4692"
# [5,] "579-499-7527" ""
# [6,] "" ""
# [7,] "543.355.3679" ""
用输出矩阵表示组(我们对第2 +列感兴趣):
str_match_all(strings, phone)
# [[1]]
# [,1] [,2] [,3] [,4]
# [1,] "219 733 8965" "219" "733" "8965"
#
# [[2]]
# [,1] [,2] [,3] [,4]
# [1,] "329-293-8753" "329" "293" "8753"
#
# [[3]]
# [,1] [,2] [,3] [,4]
#
# [[4]]
# [,1] [,2] [,3] [,4]
# [1,] "239 923 8115" "239" "923" "8115"
# [2,] "842 566 4692" "842" "566" "4692"
#
# [[5]]
# [,1] [,2] [,3] [,4]
# [1,] "579-499-7527" "579" "499" "7527"
#
# [[6]]
# [,1] [,2] [,3] [,4]
#
# [[7]]
# [,1] [,2] [,3] [,4]
# [1,] "543.355.3679" "543" "355" "3679"
答案 7 :(得分:2)
来自strcapture
的{{1}}的解决方案:
utils
答案 8 :(得分:0)
这可以使用软件包 unglue 来完成,以所选答案中的示例为例:
# install.packages("unglue")
library(unglue)
s <- c("(sometext :: 0.1231313213)", "(moretext :: 0.111222)")
unglue_data(s, "({x} :: {y})")
#> x y
#> 1 sometext 0.1231313213
#> 2 moretext 0.111222
或者从数据帧开始
df <- data.frame(col = s)
unglue_unnest(df, col, "({x} :: {y})",remove = FALSE)
#> col x y
#> 1 (sometext :: 0.1231313213) sometext 0.1231313213
#> 2 (moretext :: 0.111222) moretext 0.111222
您可以从unglue模式中获取原始正则表达式,可以选择使用名为capture的方式:
unglue_regex("({x} :: {y})")
#> ({x} :: {y})
#> "^\\((.*?) :: (.*?)\\)$"
unglue_regex("({x} :: {y})",named_capture = TRUE)
#> ({x} :: {y})
#> "^\\((?<x>.*?) :: (?<y>.*?)\\)$"
更多信息:https://github.com/moodymudskipper/unglue/blob/master/README.md