漢字で構成され、英語やその他の文字を含まない文字列にのみ一致する正規表現を取得したいと考えています。[\u4e00-\u9fa5] はまったく機能せず、[^x00-xff] は句読点または他の言語文字を使用した状況に一致します。
boost::wregex reg(L"\\w*");
bool b = boost::regex_match(L"我a", reg); // expected to be false
b = boost::regex_match(L"我,", reg); // expected to be false
b = boost::regex_match(L"我", reg); // expected to be true