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");
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…