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!