码迷,mamicode.com
首页 > 其他好文 > 详细

Qt532.QString::split()

时间:2018-09-06 18:19:56      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:bug   split   post   push   tle   tps   opengl   编码转换   nbsp   

1、效果 和 JS里面 貌似是一样的

  1.1、QString 编码转换https://www.cnblogs.com/CodeSkill/p/5082447.html

2、代码:

void MainWindow::on_pushButton_2_clicked()
{
    QString str = "A B 10 2";
    QStringList strs = str.split(" ");
    for (int i=0; i<strs.length(); i++)
        qDebug() << strs.at(i);
    qDebug() << "";


    str = "3   g  8    kjh 0";
    strs = str.split(" ");
    for (int i=0; i<strs.length(); i++)
        qDebug() << strs.at(i);
    qDebug() << "";
}

  2.1、控制台输出

Starting E:\ZZ_Qt5\Qt532_vs2010\build-Test2-Desktop_Qt_5_3_MSVC2010_OpenGL_32bit-Release\release\Test2.exe...
"A"
"B"
"10"
"2"

"3"
""
""
"g"
""
"8"
""
""
""
"kjh"
"0"

 

3、

4、

5、

 

Qt532.QString::split()

标签:bug   split   post   push   tle   tps   opengl   编码转换   nbsp   

原文地址:https://www.cnblogs.com/cppskill/p/9599212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!