C++ 中的iswspace() 函數檢查給定的寬字符是否是寬空白字符。
iswspace() 函數在<cwctype> 頭文件中定義。
iswspace()原型
int iswspace(wint_t ch);
iswspace() 函數檢查ch
是否為空白字符。默認情況下,以下字符是空白字符:
- 空格(0x20,'')
- 換頁(0x0c,'\f')
- 換行(0x0a,'\n')
- 回車 (0x0d, '\r')
- 水平製表符 (0x09, '\t')
- 垂直製表符(0x0b,'\v')
參數:
ch
:要檢查的寬字符。
返回:
- 如果
ch
是空白字符,則iswspace() 函數返回非零值。 - 如果
ch
不是空白字符,則返回零。
示例:iswspace() 函數如何工作?
#include <cwctype>
#include <iostream>
#include <cwchar>
#include <clocale>
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.UTF-8");
wchar_t str[] = L"<html>\n<head>\n\t<title>\u0939\u0947\u0932\u094b</title>\n</head>\n</html>";
wcout << L"Before removing whitespace characters" << endl;
wcout << str << endl << endl;
wcout << L"After removing whitespace characters" << endl;
for (int i=0; i<wcslen(str); i++)
{
if (!iswspace(str[i]))
wcout << str[i];
}
return 0;
}
運行程序時,輸出將是:
Before removing whitespace characters <html> <head> <title>हेलो</title> </head> </html> After removing whitespace characters <html><head><title>हेलो</title></head></html>
相關用法
- C++ iswspace()用法及代碼示例
- C++ iswdigit()用法及代碼示例
- C++ iswxdigit()用法及代碼示例
- C++ iswupper()用法及代碼示例
- C++ iswalnum()用法及代碼示例
- C++ iswlower()用法及代碼示例
- C++ iswcntrl()用法及代碼示例
- C++ iswgraph()用法及代碼示例
- C++ iswpunct()用法及代碼示例
- C++ iswctype()用法及代碼示例
- C++ iswalpha()用法及代碼示例
- C++ iswprint()用法及代碼示例
- C++ iswblank()用法及代碼示例
- C++ is_unsigned用法及代碼示例
- C++ is_fundamental用法及代碼示例
- C++ isdigit()用法及代碼示例
- C++ is_scalar用法及代碼示例
- C++ is_pointer用法及代碼示例
- C++ is_polymorphic用法及代碼示例
- C++ isalpha()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ iswspace()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。