Hi All,
I am wondering If is possible to write more complcated regexp such this:
lets say I have file
Code:
"datum">Sobota 24. októbra 2009
and I want everthing within quotes ("datum") so i write
which works fine.
And now, what if I want everything that is not in the quotes? (>Sobota 24. októbra 2009)
I tried negation of previous regexp
Code:
grep -oE '[^("[^"]*")]*'
but gives me error:
grep: Unmatched ) or \)
Is possible to write negation of regular expression?
Thank you for reply