replace()用法
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str = "abcdef";
str.replace(0,3,"XXX");
cout << str << endl; //輸出: XXXdef
str.replace(0, 3, 3, 'Y');
cout << str << endl; //輸出: YYYdef
string s = "2020";
str.replace(0, 3, s, 0, 3);
cout << str << endl; //輸出: 202def
return 0;
}
相關文章
- MYSQL中replace into的用法MySql
- mySQL中replace的用法MySql
- C++ replace() 函式用法C++函式
- 淺析MySQL replace into 的用法MySql
- 一文搞懂String的replace用法
- Python中replace()的用法是什麼?附例項!Python
- Replace
- JavaScript replace()JavaScript
- replace方法
- 【Go】strings.Replace 與 bytes.Replace 調優Go
- replace函式函式
- location.replace() 方法
- RESTOREkeyttlserialized-value[REPLACE]RESTTLSZed
- MySQL replace語句MySql
- SQLite 之 INSERT OR REPLACE使用SQLite
- [Javascript] Replace undefined with void 0JavaScriptUndefined
- 原生js實現replace方法JS
- 深入瞭解下replace函式函式
- js replace 全域性替換JS
- ARC130F Replace by average
- [leetcode] 890. Find and Replace PatternLeetCode
- ecshop中preg_replace替換為preg_replace_callback需要注意的事項
- Spark SQL,正則,regexp_replaceSparkSQL
- 11 replace-method標籤使用
- 攻防世界 Replace Reverse二星題
- 魔板引擎中的replace方法
- ACL Beginner Contest E.Replace DigitsGit
- In 2019, Let me Replace Redux with React HooksReduxReactHook
- Java中replace與replaceAll區別Java
- python 字串replace方法實現探索Python字串
- js提示Cannot read property ‘replace‘ of undefinedJSUndefined
- 20190118-自定義實現replace方法
- JavaScript replace()替換字串中指定字元JavaScript字串字元
- Android webview “location.replace” 不起作用AndroidWebView
- javascript中replace的高階運用JavaScript
- Python replace方法並不改變原字串Python字串
- PHP中preg_replace函式解析PHP函式
- Dedecms提示 ereg_replace() is deprecated 錯誤