I have just started using boost C++ libraries for some parser work. I would like to use some help on the following:
Matching an 8-bit hexadecimal number. I have tried:
char_("0-9a-fA-F")
which matches only one hexadecimal digit. I've also tried using:*char_("0-9a-fA-F")
, but it is also not workingMatching any string with underscore characters? For example,
aBCd_Efgh