boost::xpressive::icase — Makes a sub-expression case-insensitive.
template<typename Xpr> unspecified icase(Xpr const & xpr);
Use icase() to make a sub-expression case-insensitive. For instance, "foo" >> icase(set['b'] >> "ar") will match "foo" exactly followed by "bar" irrespective of case.