std::ispunct(std::locale)
STD::ispit%28std::locale%29
Defined in header | | |
---|---|---|
template< class charT > bool ispunct( charT ch, const locale& loc | | |
检查给定字符是否被给定的区域设置%27s归类为标点符号std::ctype
小面。
参数
ch | - | character |
---|---|---|
loc | - | locale |
返回值
回报true
如果字符被归类为标点符号,false
否则。
可能的实施
模板<class图表>bool ispoint%28图表ch,Const std::locale&loc%29{返回std::use[医]facet<std::Ctype<charT>>%28 loc%29 is%28 std::Ctype[医]基::点,ch%29;}
*。
例
演示在不同地区使用ispoint%28%29的用法--特定于%28 OS的%29。
二次
#include <iostream>
#include <locale>
int main()
{
const wchar_t c = L'\u214b'; // upside-down ampersand
std::locale loc1("C"
std::cout << "ispunct('⅋', C locale) returned "
<< std::boolalpha << std::ispunct(c, loc1) << '\n';
std::locale loc2("en_US.UTF-8"
std::cout << "ispunct('⅋', Unicode locale) returned "
<< std::boolalpha << std::ispunct(c, loc2) << '\n';
}
二次
产出:
二次
isalpha('⅋', C locale) returned false
isalpha('⅋', Unicode locale) returned true
二次
另见
ispunct | checks if a character is a punctuation character (function) |
---|---|
iswpunct | checks if a wide character is a punctuation character (function) |
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。