Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.utils.bug > #2225
| From | John Cowan <cowan@ccil.org> |
|---|---|
| Newsgroups | gnu.utils.bug |
| Subject | Re: Bug of grep -E |
| Date | 2017-12-06 10:45 -0500 |
| Message-ID | <mailman.5227.1512575149.27995.bug-gnu-utils@gnu.org> (permalink) |
| References | <tencent_33C2D0CF6BB7A5EA5B8D5D4EDFAB5894320A@qq.com> |
Backslash is not an escape in character classes. The only way to get a -
in a character class is to make sure it is at the end or the beginning. So
in your second pattern, the sequence \-% means "every character from
backslash to percent', which is no characters at all.
On Wed, Dec 6, 2017 at 10:02 AM, iPack <2741547153@qq.com> wrote:
> [urain39@urain39-pc ~]$ cat test
> https://konachan.com/image/a4ff5caad2fa35faa2271df9badacd
> 35/Konachan.com%20-%20255941%20blush%20brown_eyes%20crying%
> 20fate_kaleid_liner_prisma_illya%20fate_%28series%29%
> 20japanese_clothes%20kimono%20long_hair%20miyu_edelfelt%
> 20purple_hair%20tagme_%28artist%29%20tears.jpg
>
> [urain39@urain39-pc ~]$ cat test | grep -Eo '[0-9a-f]{32}/[0-9A-Za-z%_\.\-
> ]+'
> a4ff5caad2fa35faa2271df9badacd35/Konachan.com%20-%20255941%
> 20blush%20brown_eyes%20crying%20fate_kaleid_liner_prisma_
> illya%20fate_%28series%29%20japanese_clothes%20kimono%
> 20long_hair%20miyu_edelfelt%20purple_hair%20tagme_%28artist%29%20tears.jpg
>
> [urain39@urain39-pc ~]$ cat test | grep -Eo '[0-9a-f]{32}/[0-9A-Za-z\-%_\.
> ]+'
> a4ff5caad2fa35faa2271df9badacd35/Konachan.com%20
>
> It is bug ? or just my syntax error ?
Back to gnu.utils.bug | Previous | Next | Find similar | Unroll thread
Re: Bug of grep -E John Cowan <cowan@ccil.org> - 2017-12-06 10:45 -0500
csiph-web