gpt4 book ai didi

vba - 带双引号的 RegExp 模式中的编译错误

转载 作者:行者123 更新时间:2023-12-04 21:22:07 25 4
gpt4 key购买 nike

我想搜索从 .txt 文件中挑选的字符串以查找用双引号括起来的数字。我正在使用 Excel 宏来完成所有这些工作。示例数据:

"08134789316498"
"022"

我的代码:
Set oRegex1 = CreateObject("VBScript.RegExp")
oRegex1.Pattern = "(\"[0-9]+\"])"

但是上面的行给出了错误:

"Compile Error: Expected end of statement"



注意:我已经添加了对“Microsoft VBScript Regular Expressions 5.5”和“Microsoft VBScript Regular Expressions 1.0”的引用

最佳答案

您不需要从正则表达式的角度转义双引号,但从 vbscript/vba 的角度来看。

oRegex1.Pattern = "(""[0-9]+""\])"
^^ ^^ quotes escaped inside string by doubling them

关于vba - 带双引号的 RegExp 模式中的编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43169561/

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