vote up 3 vote down star

So I'm looking for a pattern like this:

size='0x0'

in a log file - but I'm only interested in large sizes (4 digits or more). The following regex works great in EditPadPro (nice tool BTW)

size='0x[0-9a-fA-F]{4,}

But the same regex does not work in awk - seems like the repetition {4,} is messing it up. Same with WinGrep - any idea from the regex gurus? Thanks!

flag

If @adamalex answer worked, you should flag it as correct, both for his benefit, and for the next person who needs this question answered. – Ben Doom Nov 6 '08 at 21:03
You could use PowerGREP instead of WinGrep, so you'll be working with exactly the same regex engine as in EditPad Pro. – Jan Goyvaerts Nov 11 '08 at 9:15

4 Answers

vote up 3 vote down check

You can in fact use awk, with a caveat.

As mentioned on the following page, you need a special command-line option (--re-interval) to make it work out, since the interval expression (the {4,}) is not in the standard:

http://kansai.anesth.or.jp/gijutu/awk/gawk/gawk_28.html

So in the end, you'll want something that looks like:

awk --re-interval "/size='0x[0-9a-fA-F]{4,}'/" thefile

This will print out the lines that match.

link|flag
That's not 'awk'; it is GNU 'gawk', which is not the only version. Having said that, on Windows, the 'awk' is most likely from GNU, especially as it was the accepted answer, but that was not automatic (MKS has a version of awk, I believe). – Jonathan Leffler Nov 6 '08 at 23:03
Considering the ubiquity of the GNU utilities, I thought it was at least a good place to start. And since it worked, it look like my assumption was right. ;-) – Dan Fego Nov 7 '08 at 2:18
vote up 4 vote down

Hi Jeff, I don't know of any elegant alternatives to the {4,} syntax, but if it is not working in your desired environment you could resort to this ugly hack:

size='0x[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]+

Hope this helps!

Adam

link|flag
nice - ugly hack worked great, and that's what counts, right? The nice thing for me was learning a new tool and not writing another C app! – Jeff Nov 6 '08 at 19:12
vote up 0 vote down

Don't forget the last apostrophe.

'
link|flag
vote up -1 vote down

in awk, don't you need to escape the apostrophe in your regex? try with out it to see if that is the case.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.