I would like to write an awk conditional that matches a string if it begins with a capital letter. Here is a sample data file.
a
b
c
A
B
C
d
e
Let's say I want to match all lines that matches characters ABC.
awk '{ if ($1 ~ /^[ABC]/) print }' test
A
B
C
Easy enough. But this doesn't work if I use a character class. Case is ignored.
awk '{ if ($1 ~ /^[A-C]/) print }' test
b
c
A
B
C
Interestingly this works:
awk '{ if ($0 ~ /^[[:upper:]]/) print }' < test
A
B
C
From the documentation, I would expect the command to be:
awk '{ if ($0 ~ /^[:upper:]/) print }' < test
What am I misunderstanding? Specifically, why is [A-C] case insensitive and why do I need to write [[:upper:]] instead of [:upper:]?
echo $LANG
en_US.utf8
LANGenvironment variable hold? – glenn jackman Apr 6 '11 at 17:13[[A-C]]?awk '{ if ($0 ~ /^[[A-C]]/) print }' testgives 0 results. Same for gawk. – schmmd Apr 6 '11 at 18:48/[[:digit:]a-fA-F]/-- so the[:character_class:]is inside the outer[brackets]like plain characters – glenn jackman Apr 6 '11 at 18:53[A-C]is referred to as a character class (i.e. download.oracle.com/javase/tutorial/essential/regex/… and some versions ofman awk) but not inman gawk! – schmmd Apr 6 '11 at 20:24