当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ iswspace()用法及代码示例


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。