Write a C++ Program to remove all characters except alphabets in a string.
Program Code:
#include <iostream>
using namespace std;
int main()
{
int i;
string name;
cout << "Enter your string : ";
cout<<endl;
getline(cin, name);
for(i = 0; i < line.size(); i++)
{
if (!((name[i] >= 'a' && name[i]<='z') || (name[i] >= 'A' && name[i]<='Z')))
{
name[i] = '\0';
}
}
cout << "String after removal of all characters except alphabets : " ;
cout<<endl;
cout<< name;
return 0;
}
The program output is tested on www.jdoodle.com
Outpput:
Enter your string :
Mukesh##$$&&Rajput
String after removal of all characters except alphabets :
Mukesh Rajput
Thanks
Mukesh Rajput
Post A Comment:
0 comments: