Code:
std::string myStr = "This is my string";
myStr.insert(2, ';');
This inserts a ';' in the second position (in place of the 'i' in "This"). The CString class has a similar function (called, "Insert").

Viggy