personnage d'insert QString

//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"
Sorann