QString怎么去掉最后一个字符

QString data = "hello world!";
data = data.left(data.size - 1);  /* 取data左边size - 1长度的数据 */

 

你可能感兴趣的:(Qt,编程语言)