isspace()函数
在C++中,isspace是用于字符串和字符处理的预定义函数。cstring是字符串函数所需的头文件,而cctype是字符函数所需的头文件。
此函数用于检查参数是否包含任何空格字符。
C++中有很多类型的空格字符,例如-
- ‘ ‘ – 空间
- ‘\ t’-水平标签
- ‘\ n’–换行符
- ‘\ v’-垂直标签
- ‘\ f’–提要
- ‘\ r’–回车
Syntax :
int isspace(int x)
x : x is character to be checked
应用
给定一个字符串,我们需要使用isspace()函数字符串的空白字符数。
例子:
Input : string = 'Geeks for geeks'
Output : 2
Input :string = 'My name is Ayush'
Output : 3
// C program to illustrate
// isspace() function
#include
#include
int main()
{
// taking input
char ch = ' ';
// checking is it space?
if (isspace(ch))
printf("\nEntered character is space");
else
printf("\nEntered character is not space");
}
输出 :
Entered character is space
应用程序: isspace()函数用于查找给定句子中的空格数。
例子:
Input : This is a good website
Output : Number of spaces in the sentence is : 4
Input : heyy this is geeksforgeeks
Output : Number of spaces in the sentence is : 3
Input : hello how can I help you
Output : Number of spaces in the sentence is : 5
算法
1.逐字符遍历给定的字符串字符直至其长度,检查一下字符是否为空格字符。
2.如果是空格字符,则将计数器加1,否则遍历下一个字符。
3.打印计数器的值。
// C program to illustrate
// isspace() function
#include
#include
// Function for counting spaces
int cnt_space(int i, int count, char ch)
{
// input sentence
char buf[50] = "Geeks for Geeks";
ch = buf[0];
// counting spaces
while (ch != '\0') {
ch = buf[i];
if (isspace(ch))
count++;
i++;
}
// returning number of spaces
return (count);
}
int main()
{
char ch;
int i = 0, count = 0;
// Calling function
count = cnt_space(i, count, ch);
// printing number of spaces
printf("\nNumber of spaces in the sentence is : %d", count);
return 0;
}
输出:
Number of spaces in the sentence is : 2
// CPP program to count white spaces in a string
#include
#include
#include
using namespace std;
// function to calculate whitespaces
void space(string& str)
{
int count = 0;
int length = str.length();
for (int i = 0; i < length; i++) {
int c = str[i];
if (isspace(c))
count++;
}
cout << count;
}
// Driver Code
int main()
{
string str = "Geeks for geeks";
space(str);
return 0;
}
输出:
2
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。