本文整理汇总了C++中std::u32string::cend方法的典型用法代码示例。如果您正苦于以下问题:C++ u32string::cend方法的具体用法?C++ u32string::cend怎么用?C++ u32string::cend使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类std::u32string
的用法示例。
在下文中一共展示了u32string::cend方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ValidateName
// static
bool EditableMapObject::ValidateName(string const & name)
{
if (name.empty())
return true;
if (strings::IsASCIIString(name))
return regex_match(name, regex(R"(^[ A-Za-z0-9.,[email protected]#$%&()\-\+:;"'`]+$)"));
std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> converter;
std::u32string u32name;
try
{
u32name = converter.from_bytes(name);
}
catch (std::range_error const &)
{
// Cannot convert, for ex. it is possible for some emoji.
return false;
}
std::u32string const excludedSymbols = U"^~§><{}[]*=_±\n\t\r\v\f|√•÷׶°";
for (auto const ch : u32name)
{
// Exclude arrows, mathematical symbols, borders, geometric shapes.
if (ch >= U'\U00002190' && ch <= U'\U00002BFF')
return false;
// Exclude format controls, musical symbols, emoticons, ornamental and pictographs,
// ancient and exotic alphabets.
if (ch >= U'\U0000FFF0' && ch <= U'\U0001F9FF')
return false;
if (find(excludedSymbols.cbegin(), excludedSymbols.cend(), ch) != excludedSymbols.cend())
return false;
}
return true;
}