1. split 按照指定的字符分割,如按照";"或"/"等分割QString str = "hello,world" QStringList list = str.split(","); QString a = list[0];
確定! 回上一頁