If I have an awk command
pattern { ... }
and pattern uses a capturing group, how can I access the string so captured in the block?
|
|
That was a stroll down memory lane... I replaced awk by perl a long time ago. Apparently the AWK regular expression engine does not capture its groups. you might consider using something like :
the -n flag causes perl to loop over every line like awk does. |
|||||||||||||||||
|
|
With gawk, you can use the
|
|||||||||
|
|
You can use GNU awk:
|
|||||||||||||
|
|
You can simulate capturing in vanilla awk too, without extensions. Its not intuitive though: step 1. use gensub to surround matches with some character that doesnt appear in your string. step 2. Use split against the character. step 3. Every other element in the splitted array is your capture group.
$ echo 'ab cb ad' | awk '{ split(gensub(/a./,SUBSEP"&"SUBSEP,"g",$0),cap,SUBSEP); print cap[2]"|" cap[4] ; }'
ab|ad
|
|||||||||||||||
|
|
This is something I need all the time so I created a bash function for it. It's based on glenn jackman's answer. DefinitionAdd this to your .bash_profile etc.
UsageCapture regex for each line in file
Capture 1st regex capture group for each line in file
|
|||
|
|