I've got a string i need to match:
/sw/unicad/C32_SC_12_CLKPBP10_LR/2.0/CADENCE/LEF/C32_SC_12_CLKPBP10_LR_soc.lef
I've come up with
static const boost::regex lefFilePath("/?(([[:word:]]*)/)*([[:word:]]*)\.lef");
Yet it doesn't match. Can I get a hand please?