SyntaxFix
Write A Post
Hire A Developer
Questions
If you just want to insert a value at a certain position in a string, you can use the String.Insert method:
String.Insert
public string Insert(int startIndex, string value)
Example:
"abc".Insert(2, "XYZ") == "abXYZc"