gpt4 book ai didi

regex - 在正则表达式中,神秘错误 : assertion 'tree->num_tags == num_tags' failed in executing regexp: file 'tre-compile.c' , 第 634 行

转载 作者:行者123 更新时间:2023-12-01 08:33:13 33 4
gpt4 key购买 nike

假设 900 多个公司名称使用管道分隔符——“firm.pat”粘贴在一起形成一个正则表达式模式。

firm.pat <- str_c(firms$firm, collapse = "|")

使用名为“bio”的数据框有一个名为“comment”的大字符变量(250 行,每行 100 多个字),我想用空格替换所有公司名称。 gsub 调用和 str_replace_all 调用都返回相同的神秘错误。
bio$comment <- gsub(pattern = firm.pat, x = bio$comment, replacement = "")
Error in gsub(pattern = firm.pat, x = bio$comment, replacement = "") :
assertion 'tree->num_tags == num_tags' failed in executing regexp: file 'tre-compile.c', line 634

library(stringr)
bio$comment <- str_replace_all(bio$comment, firm.pat, "")
Error: assertion 'tree->num_tags == num_tags' failed in executing regexp: file 'tre-compile.c', line 634
traceback() 没有启发我。
> traceback()
4: gsub("aaronson rappaport|adams reese|adelson testan|adler pollock|ahlers cooney|ahmuty demers|akerman|akin gump|allen kopet|allen matkins|alston bird|alston hunt|alvarado smith|anderson kill|andrews kurth|archer

# hundreds of lines of company names omitted here

lties in all 50 states and washington, dc. results are compiled through a peer-review survey in which thousands of lawyers in the u.s. confidentially evaluate their professional peers."
), fixed = FALSE, ignore.case = FALSE, perl = FALSE)
3: do.call(f, compact(args))
2: re_call("gsub", string, pattern, replacement)
1: str_replace_all(bio$comment, firm.pat, "")

其他三个帖子提到了关于 SO 的神秘错误 a passing reference and cites two other oblique references ,但没有进行讨论。

我知道这个问题缺乏可重现的代码,但即便如此,我如何找出错误所解释的内容?更好的是,我如何避免抛出错误?该错误似乎不会发生在数量较少的公司中,但我无法检测到模式或阈值。我正在运行 Windows 8、RStudio、每个包的更新版本。

谢谢你。

最佳答案

对于由数百个制造商名称组成的模式,我遇到了同样的问题。因为我可以建议模式太长,所以我将它分成两个或多个模式并且效果很好。

  ml<-length(firms$firm)
xyz<-gsub(sprintf("(*UCP)\\b(%s)\\b", paste(head(firms$firm,n=ml/2), collapse = "|")), "", bio$comment, perl=TRUE)
xyz<-gsub(sprintf("(*UCP)\\b(%s)\\b", paste(tail(firms$firm,n=ml/2), collapse = "|")), "", xyz, perl=TRUE)

关于regex - 在正则表达式中,神秘错误 : assertion 'tree->num_tags == num_tags' failed in executing regexp: file 'tre-compile.c' , 第 634 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28684438/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com