-2
如何將一個字母的字母替換爲另一個字母的字母?反之亦然。例如a <-> x, b <-> y, c <-> z
。用另一個字母替換一個字母中的一個字母
在C++代碼,請
txtText->setText(txtText->toPlainText().replace(prep[a],QString("x")));
txtText->setText(txtText->toPlainText().replace(prep[b],QString("y")));
txtText->setText(txtText->toPlainText().replace(prep[c],QString("z")));
還是怎麼樣?我不明白
什麼「數組」?一個字符串? – 2013-06-05 19:16:35
1st array - QString prep [3] = {「a」,「b」,「c」} – Andrew
2nd - QString prep [3] = {「x」,「y」,「z」} – Andrew