c++ replace函数
《C++ Replac函数》
一、介绍
C++ Replac函数为搜索并替换字符串的函数,可以查字符串中的某个字符或子字符串,并将其用其他字符或子字符串替换。
二、语法
string& replac (size_type index,size_type num,const string& str);t//函数重载1
string& replac (iterator start,iterator end,const string& str);tt //函数重载2
string& replac (size_type index,size_type num,const string& str,size_type str_index,size_type str_num);t//函数重载3
string& replac (Iterator start,iterator end,const string& str,size_type str_index,size_type str_num);t//函数重载4
三、参数
1. index:指定字符串开始搜索位置的索引;
2. num:指定替换字符或字符串个数;
3. str:指定替换字符串;
4. start:指定字符串开始搜索位置的迭代器;
5. end:指定字符串结束搜索位置的迭代器;字符串replace函数
6. str_index:指定字符串str的替换字符或字符串的起始位置;
7. str_num:指定替换字符或字符串的个数。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论