python replace函数用法_C string.replace()字符替换函数的用法

C replace()函数返回string 能放的最大元素个数。(不同于capacity)

size _ type max _ size( ) const; basic_string ::size_type cap, max; cap

= s.capacity ( ); max = s.max_size ( ); // max=4294967294.

basic_string::rfind 寻找给定的string。返回找到的第一个string 下标值;如果没找到

则返回npos。

与find 不同的是:rfind 默认从npos 开始找。其他相同。

basic_string::replace 将原string 中的元素或子串替换。返回替换后的string。

#include

#include

using namespace std;

int main()

{

string str1("String handling C style.");

string str2("STL Power");

cout << "Initial strings:n";

cout << "str1: " << str1 << endl;

cout << "str2: " << str2 << "nn";

// demonstrate replace

cout << "Replace 8 characters in str1 with str2:n";

str1.replace(7, 8, str2);

cout << str1 << endl;

return 0;

}

/*

Initial strings:

str1: String handling C style.

str2: STL Power

Replace 8 characters in str1 with str2:

String STL Power C style.

*/

指定具体位置

#include

using std::cout;

using std::endl;

#include

using std::string;

int main()

{

string string1( "abc edfgh ijk lmno pqr stu vw xyz" );

cout << "Original string:n" << string1 << endl << endl;

int position = string1.find( "." ); // find first period

while ( position != string::npos )

{

string1.replace( position, 2, "12345;;123", 5, 2 );

position = string1.find( ".", position 1 );

}

cout << string1 << endl;

return 0;

}

/*

Original string:

abc edfgh ijk lmno pqr stu vw xyz

abc edfgh ijk lmno pqr stu vw xyz

*/

insert(), erase(), and replace().

#include

#include

using namespace std;

int main()

{

string str1("A");

string str2("B");

cout << "Initial strings:n";

cout << "str1: " << str1 << endl;

cout << "str2: " << str2 << "nn";

str1.insert(6, str2);

cout << str1 << "nn";

str1.erase(6, 9);

cout << str1 <<"nn";

str1.replace(7, 8, str2);

cout << str1 << endl;

return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值