0

我在wingrep 2.3中尝试了以下正则表达式:

[A-Za-z0-9]{1,5}cd77

但是搜索返回空,即使我正在搜索的 txt 文件中有以下字符串testcd77 。

4

2 回答 2

1

The Regular Expression Lookup tab on the Search Criteria dialog for my copy of Windows Grep doesn't offer {} as a supported feature. So I think you're stuck with unrolling the search string to

[A-Za-z0-9]([A-Za-z0-9]([A-Za-z0-9]([A-Za-z0-9]([A-Za-z0-9])?)?)?)?cd77
于 2012-05-04T17:33:52.777 回答
1

wingrep 文档中没有任何内容表明它们支持这种区间表达式。你可能根本做不到。

一些支持这些表达式的正则表达式引擎需要转义大括号,所以你可以试试这个[A-Za-z0-9]\{1,5\}cd77:但如果这不起作用,那么我怀疑你不走运。

于 2012-05-04T17:26:41.343 回答