【发布时间】:2019-09-17 04:32:49
【问题描述】:
我尝试在 G1ANT 中使用 text.matches 命令,但它给出了未找到 text.matches 命令的错误。
text.matches ‴Name: John Surname: Smith‴ regexes \wn.mE
dialog ♥result
【问题讨论】:
标签: g1ant
我尝试在 G1ANT 中使用 text.matches 命令,但它给出了未找到 text.matches 命令的错误。
text.matches ‴Name: John Surname: Smith‴ regexes \wn.mE
dialog ♥result
【问题讨论】:
标签: g1ant
G1ANT 从 G1ANT.Addon.Core 中删除了 text.matches 命令,因为它是不必要的,同样的事情可以使用 text.find 命令完成。
例如:
text.find text ‴Name: John Surname: Smith‴ regex ‴\wn.mE‴
dialog ♥result
【讨论】: