ImageVerifierCode 换一换
格式:DOCX , 页数:9 ,大小:17.72KB ,
资源ID:8670615      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/8670615.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(C和C++字符串处理函数.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

C和C++字符串处理函数.docx

1、C和C+字符串处理函数rember thisstrncpy(a,b,5);a5=0;char a10;memset(a,#,sizeof(a);a10=0;刚开始学C/C+时,一直对字符串处理函数一知半解,这里列举C/C+字符串处理函数,希望对初学者有一定的帮助。C:char st100;1. 字符串长度 strlen(st);2. 字符串比较 strcmp(st1,st2); strncmp(st1,st2,n); 把st1,st2的前n个进行比较。3. 附加 strcat(st1,st2); strncat(st1,st2,n); n表示连接上st2的前n个给st1,在最后不要加0。4.

2、替换 strcpy(st1,st2); strncpy(st1,st2,n); n表示复制st2的前n个给st1,在最后要加0。5. 查找 where = strchr(st,ch) ch为要找的字符。 where = strspn(st1,st2); 查找字符串。 where = strstr(st1,st2);C+:string str;1. 字符串长度 len = str.length(); len = str.size();2. 字符串比较 可以直接比较 也可以: pare(str2); pare(pos1,len1,str2,pos2,len2); 值为负,0 ,正。 nops 长度

3、到完。3. 附加 str1 += str2; 或 str1.append(str2); str1.append(str2.pos2,len2); 4. 字符串提取 str2 = str1.substr(); str2 = str1.substr(pos1); str2 = str1.substr(pos1,len1); string a=s.substr(0,4); /获得字符串s中 从第0位开始的长度为4的字符串5. 字符串搜索 where = str1.find(str2); where = str1.find(str2,pos1); pos1是从str1的第几位开始。 where = s

4、tr1.rfind(str2); 从后往前搜。6. 插入字符串 不是赋值语句。 str1.insert(pos1,str2); str1.insert(pos1,str2,pos2,len2); str1.insert(pos1,numchar,char); numchar是插入次数,char是要插入的字符。7. 替换字符串 str1.replace(pos1,str2); str1.replace(pos1,str2,pos2,len2);8. 删除字符串 str.erase(pos,len) str.clear();9. 交换字符串 swap(str1,str2);10. C - C+ c

5、har *cstr = Hello; string str1; cstr = cstr; string str2(cstr);对于ACMer来说,C的字符串处理要比C+的方便、简单,尽量用C的字符串处理函数。C+中string类常用算法string类的构造函数:string(const char *s); /用c字符串s初始化string(int n,char c); /用n个字符c初始化此外,string类还支持默认构造函数和复制构造函数,如string s1;string s2=hello;都是正确的写法。当构造的string太长而无法表达时会抛出length_error异常string类

6、的字符操作:const char &operator(int n)const;const char &at(int n)const;char &operator(int n);char &at(int n);operator和at()均返回当前字符串中第n个字符的位置,但at函数提供范围检查,当越界时会抛出out_of_range异常,下标运算符不提供检查访问。const char *data()const;/返回一个非null终止的c字符数组const char *c_str()const;/返回一个以null终止的c字符串int copy(char *s, int n, int pos =

7、 0) const;/把当前串中以pos开始的n个字符拷贝到以s为起始位置的字符数组中,返回实际拷贝的数目string的特性描述:int capacity()const; /返回当前容量(即string中不必增加内存即可存放的元素个数)int max_size()const; /返回string对象中可存放的最大字符串的长度int size()const; /返回当前字符串的大小int length()const; /返回当前字符串的长度bool empty()const; /当前字符串是否为空void resize(int len,char c);/把字符串当前大小置为len,并用字符c填充

8、不足的部分string类的输入输出操作:string类重载运算符operator /用于输入,同样重载运算符operator,=,时返回1,时返回-1,=时返回0 string的子串:string substr(int pos = 0,int n = npos) const;/返回pos开始的n个字符组成的字符串string的交换:void swap(string &s2); /交换当前字符串与s2的值 string类的查找函数:int find(char c, int pos = 0) const;/从pos开始查找字符c在当前字符串的位置int find(const char *s, in

9、t pos = 0) const;/从pos开始查找字符串s在当前串中的位置int find(const char *s, int pos, int n) const;/从pos开始查找字符串s中前n个字符在当前串中的位置int find(const string &s, int pos = 0) const;/从pos开始查找字符串s在当前串中的位置/查找成功时返回所在位置,失败返回string:npos的值int rfind(char c, int pos = npos) const;/从pos开始从后向前查找字符c在当前串中的位置int rfind(const char *s, int

10、pos = npos) const;int rfind(const char *s, int pos, int n = npos) const;int rfind(const string &s,int pos = npos) const;/从pos开始从后向前查找字符串s中前n个字符组成的字符串在当前串中的位置,成功返回所在位置,失败时返回string:npos的值int find_first_of(char c, int pos = 0) const;/从pos开始查找字符c第一次出现的位置int find_first_of(const char *s, int pos = 0) cons

11、t;int find_first_of(const char *s, int pos, int n) const;int find_first_of(const string &s,int pos = 0) const;/从pos开始查找当前串中第一个在s的前n个字符组成的数组里的字符的位置。查找失败返回string:nposint find_first_not_of(char c, int pos = 0) const;int find_first_not_of(const char *s, int pos = 0) const;int find_first_not_of(const cha

12、r *s, int pos,int n) const;int find_first_not_of(const string &s,int pos = 0) const;/从当前串中查找第一个不在串s中的字符出现的位置,失败返回string:nposint find_last_of(char c, int pos = npos) const;int find_last_of(const char *s, int pos = npos) const;int find_last_of(const char *s, int pos, int n = npos) const;int find_last_

13、of(const string &s,int pos = npos) const;int find_last_not_of(char c, int pos = npos) const;int find_last_not_of(const char *s, int pos = npos) const;int find_last_not_of(const char *s, int pos, int n) const;int find_last_not_of(const string &s,int pos = npos) const;/find_last_of和find_last_not_of与fi

14、nd_first_of和find_first_not_of相似,只不过是从后向前查找 string类的替换函数:string &replace(int p0, int n0,const char *s);/删除从p0开始的n0个字符,然后在p0处插入串sstring &replace(int p0, int n0,const char *s, int n);/删除p0开始的n0个字符,然后在p0处插入字符串s的前n个字符string &replace(int p0, int n0,const string &s);/删除从p0开始的n0个字符,然后在p0处插入串sstring &replace

15、(int p0, int n0,const string &s, int pos, int n);/删除p0开始的n0个字符,然后在p0处插入串s中从pos开始的n个字符string &replace(int p0, int n0,int n, char c);/删除p0开始的n0个字符,然后在p0处插入n个字符cstring &replace(iterator first0, iterator last0,const char *s);/把first0,last0)之间的部分替换为字符串sstring &replace(iterator first0, iterator last0,cons

16、t char *s, int n);/把first0,last0)之间的部分替换为s的前n个字符string &replace(iterator first0, iterator last0,const string &s);/把first0,last0)之间的部分替换为串sstring &replace(iterator first0, iterator last0,int n, char c);/把first0,last0)之间的部分替换为n个字符cstring &replace(iterator first0, iterator last0,const_iterator first, c

17、onst_iteratorlast);/把first0,last0)之间的部分替换成first,last)之间的字符串string类的插入函:string &insert(int p0, const char *s);string &insert(int p0, const char *s, int n);string &insert(int p0,const string &s);string &insert(int p0,const string &s, int pos, int n);/前4个函数在p0位置插入字符串s中pos开始的前n个字符string &insert(int p0,

18、int n, char c);/此函数在p0处插入n个字符citerator insert(iterator it, char c);/在it处插入字符c,返回插入后迭代器的位置void insert(iterator it, const_iterator first, const_iterator last);/在it处插入first,last)之间的字符void insert(iterator it, int n, char c);/在it处插入n个字符c string类的删除函数iterator erase(iterator first, iterator last);/删除first,

19、last)之间的所有字符,返回删除后迭代器的位置iterator erase(iterator it);/删除it指向的字符,返回删除后迭代器的位置string &erase(int pos = 0, int n = npos);/删除pos开始的n个字符,返回修改后的字符串 string类的迭代器处理:string类提供了向前和向后遍历的迭代器iterator,迭代器提供了访问各个字符的语法,类似于指针操作,迭代器不检查范围。用string:iterator或string:const_iterator声明迭代器变量,const_iterator不允许改变迭代的内容。常用迭代器函数有:cons

20、t_iterator begin()const;iterator begin(); /返回string的起始位置const_iterator end()const;iterator end(); /返回string的最后一个字符后面的位置const_iterator rbegin()const;iterator rbegin(); /返回string的最后一个字符的位置const_iterator rend()const;iterator rend(); /返回string第一个字符位置的前面rbegin和rend用于从后向前的迭代访问,通过设置迭代器string:reverse_iterator,string:const_reverse_iterator实现 字符串流处理:通过定义ostringstream和istringstream变量实现,头文件中例如: string input(hello,this is a test); istringstream is(input); string s1,s2,s3,s4; iss1s2s3s4;/s1=hello,this,s2=is,s3=a,s4=test ostringstream os; oss1s2s3s4; coutos.str();

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1