字符串是一组字符。我们也可以将它们称为字符数组。考虑到
一个由字符串组成的字符数组,这些字符串具有指定的索引和值。有时候
我们可以对字符串进行一些修改,其中一种修改是替换字符
通过提供一个特定的索引。在本文中,我们将看到如何替换一个字符从一个
specific index inside a string using C++.
语法
String_variable[ ] =
登录后复制
在C++中,我们可以使用索引访问字符串字符。在这里用来替换一个字符的代码是
在指定的索引位置上,我们只需将该位置赋值为新的某个字符
character as shown in the syntax. Let us see the algorithm for a better understanding.
算法
- 取字符串 s,指定索引 i,以及一个新字符 c
- 如果索引 i 是正数且其值不超过字符串大小,则
- s[ i ] = c
- return s
- otherwise 的中文翻译为:否则
- 返回s而不改变任何内容
- end if
Example
#include
using namespace std;
string solve( string s, int index, char new_char){
// replace new_char with the existing character at s[index]
if( index >= 0 && index < s.length() ) {
s[ index ] = new_char;
return s;
} else {
return s;
}
}
int main(){
string s = "This is a sample string.";
cout