Replace A Character In A String
sTemp = "ABCDEF";
sTemp = sTemp->Substring(1, 1); //Get a single character from the source string
Result = Result->Remove(LICENSER_PRODUCT_ID_1_INDEX, 1); //Remove the character to be replaced in the destination string
Result = Result->Insert(LICENSER_PRODUCT_ID_1_INDEX, sTemp); //Add the character
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.