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


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


C++ 中的iswdigit() 函数检查给定的宽字符是否为数字。

iswdigit() 函数在<cwctype> 头文件中定义。

iswdigit()原型

int iswdigit(wint_t ch);

iswalnum() 函数检查ch 是否为数字。从 0 到 9 的字符,即 0,1,2,3,4,5,6,7,8,9 被归类为数字。

参数:

  • ch :要检查的宽字符。

返回:

  • 如果ch 是数字,则iswdigit() 函数返回非零值。否则返回零。
  • 如果ch 不是数字,则返回零。

示例:iswdigit() 函数如何工作?

#include <cwctype>
#include <iostream>
#include <cwchar>
#include <clocale>
using namespace std;

int main()
{
	setlocale(LC_ALL, "en_US.UTF-8");
	wchar_t str[] = L"\u20b9\u0967\u0966 = Rs.10";

	wcout << L"The digit in the string \"" << str << L"\" are :" << endl;
	for (int i=0; i<wcslen(str); i++)
	{
		if (iswdigit(str[i]))
		wcout << str[i] << " ";
	}
	
	return 0;
}

运行程序时,输出将是:

The digit in the string "₹१० = Rs.10" are :
1 0

相关用法


注:本文由纯净天空筛选整理自 C++ iswdigit()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。