Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a string of 8 characters '00001111' I want to replace some specific index value. For example if I check stringName[2]=='0' and replce it using stringName.replace(2,2,"1") then it replaces but one character is missed at the end

if (xyz[3]=='0')
{
    xyz.replace(3,3,"1");
}
else
{
    xyz.replace(3, 3, "0");
}

output

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
703 views
Welcome To Ask or Share your Answers For Others

1 Answer

The problem is misuse of the replace method, the first parameter is index of the start for replace, the second is length, and the third is the string that should be inserted. hence saying replace(2,2,"0") means replace the two chars that start at index 2 with "0" (a string of one char), that is why you have chars disappearing.

the solution is as people said, string[index_you_want_to_replace] = 'some_char'.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...