-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_operation.cpp
50 lines (38 loc) · 1.45 KB
/
string_operation.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include<bits/stdc++.h>
using namespace std;
int main()
{
//fullName is the string which is converted to uppercase
string fName;
string lName;
cout<<"Enter your First Name : ";
cin>>fName;
cout<<"Enter your Last Name : ";
cin>>lName;
// Concatenation of Two Strings
string fullName = fName + " " + lName;
cout<<"After Concatenation : "<<fullName<<endl;
//using transform() function and ::toupper in STL
transform(fullName.begin(), fullName.end(), fullName.begin(), ::toupper);
cout<<"After Converting to UpperCase : " << fullName << endl;
//fullName is the string which is converted to lowercase
//using transform() function and ::tolower in STL
transform(fullName.begin(), fullName.end(), fullName.begin(), ::tolower);
cout<<"After Converting to LowerCase : " << fullName << endl;
//String Length
cout << "Length of String : " << fullName.size()<<endl;
//White Space Remove in String
fullName.erase(remove(fullName.begin(), fullName.end(), ' '), fullName.end());
cout << "After White Space Removal : " << fullName;
return 0;
}
//Output
/*
Enter your First Name : Virat
Enter your Last Name : Kohli
After Concatenation : Virat Kohli
After Converting to UpperCase : VIRAT KOHLI
After Converting to LowerCase : virat kohli
Length of String : 11
After White Space Removal : viratkohli
*/