Let say I have a string "ABCDEFGH"and I would like to add a char into this string such as (adding Z to the fourth column);
ABCZDEFGH
How can I do this efficiently instead of changing string into char, moving all chars to the new column, and adding the char later?