I have data in the following format:
.......{INFO1}.....[INFO2]....
For awk
it should be really simple to pick up the INFO1
and INFO2
parts, but I'm really struggling with it.
I have managed to get the [INFO2]
part by using awk -F'[][]' '{ print $2 }'
but the INFO1
just will not match for me.
How do I specify {}
as delimiters?