📅  最后修改于: 2022-03-11 14:44:58.750000             🧑  作者: Mango
//Inserts the QString str at the given index position and returns a reference
//to this QString.
QString str = "Meal";
str.insert(1, QString("ontr"));
// str == "Montreal"