Ask Your Question
0

Why is `[\d]` ineffective in GNU `grep` when PCRE is enabled?

asked 2023-02-26 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-12-16 07:00:00 +0000

lakamha gravatar image

In GNU grep, the regular expression [\d] matches the character class d only, because it does not have any special meaning in POSIX regular expressions.

However, when PCRE (Perl-Compatible Regular Expressions) is enabled, the backslash (\) is interpreted as an escape character for special characters, and the character class \d is recognized as shorthand for "digit character".

Therefore, in PCRE-enabled GNU grep, the correct syntax for matching digit characters would be \d or [[:digit:]].

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-02-26 11:00:00 +0000

Seen: 8 times

Last updated: Dec 16 '21