[C++基础]032_常用的字符串处理函数(strcat,strcpy,strcmp,strupr,strlwr,strlen)


1. strcat——字符串连接

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5 
 6     char str[15] = "abcd";
 7     char str1[] = "abc";
 8     strcat(str, str1);
 9     cout<<str<<endl;
10 
11     system("pause");
12     return 0;
13 }

※注意点,第一个字符串数组要足够大,否则会有越界问题。

2. strcpy——字符串拷贝

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5 
 6     char str[15] = "abcd";
 7     char str1[] = "abc";
 8     strcpy(str, str1);
 9     cout<<str<<endl;
10 
11     system("pause");
12     return 0;
13 }

※注意点,第一个字符串数组要足够大,否则会有越界问题。另外第二个参数可以不是数组,可以是字符。

3. strcmp——字符串比较函数

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5 
 6     char str[15] = "abcd";
 7     char str1[] = "abc";
 8     if(0 == strcmp(str, str1)){
 9         cout<<"Equal."<<endl;
10     }else{
11         cout<<"Unequal."<<endl;
12     }
13 
14     system("pause");
15     return 0;
16 }

※注意点,前者大,返回1;后者大,返回-1;相等,返回0。

4. strupr——小写转大写

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5 
 6     char str[15] = "abcdf";
 7     char str1[] = "abcde";
 8     strupr(str);
 9     cout<<str<<endl;
10 
11     system("pause");
12     return 0;
13 }

5. strlwr——大写转小写

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5 
 6     char str[15] = "AASdf";
 7     strlwr(str);
 8     cout<<str<<endl;
 9 
10     system("pause");
11     return 0;
12 }

 

6. strlen——获取字符串长度

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5 
 6     char str[15] = "AASdf";
 7     cout<<strlen(str)<<endl;
 8 
 9     system("pause");
10     return 0;
11 }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM