wcslen()函數在cwchar.h頭文件中定義。函數wcslen()函數返回給定寬字符串的長度。
用法:
size_t wcslen(const wchar_t* str);
參數:此方法采用單個參數str,該參數表示要計算其長度的寬字符串的指針。
返回值:此函數返回寬字符串的長度。
以下示例程序旨在說明上述函數:-
示例1:
// c++ program to demonstrate
// example of wcslen() function.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Get the string to be used
wchar_t str[] = L"geeks";
// Get the length of the string using wcslen()
wcout << L"The length of '" << str
<< L"' is =" << wcslen(str) << endl;
return 0;
}
輸出:
The length of 'geeks' is =5
示例2:
// c++ program to demonstrate
// example of wcslen() function.
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Get the string to be used
wchar_t str[] = L"A computer science portal for geeks";
// Get the length of the string using wcslen()
wcout << L"The length of '" << str
<< L"' is =" << wcslen(str) << endl;
return 0;
}
輸出:
The length of 'A computer science portal for geeks' is =35
=
注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 wcslen() function in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。