Replace (strFormat, "{0}", value1)
Based on your code snip, I'm guessing you believe Replace mutates strFormat
directly. It doesn't work like that; You assign the result to the original variable like this:
strFormat = Replace (strFormat, "{0}", value1)
You can also assign to another variable to store the changed results, like this:
strFormat2 = Replace (strFormat, "{0}", value1)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…