QRegExp无法按预期运行

时间:2017-01-18 02:21:58

标签: c++ qt split qregexp

我有一个QString“mystring”,它是从这个shell命令的返回值中捕获的:

    df /storage/sdcard0/ 

捕获的字符串是:

   Filesystem               Size     Used     Free   Blksize
   /storage/sdcard0/        5.5G     3.9G     1.6G   4096

我将QString转换为QStringList:

   QStringList list=mystring.split(QRegExp("\\s"));
   int i = list.count();

然而,当我检查清单时:

  for( int a = 0; a < i; a = a + 1 )
             qDebug() << list[a];

"Filesystem"
""
"Size"
""
"Used"
""
"Free"
""
"Blksize"
""
"/sdcard/"
""
"5.5G"
""
"3.9G"
""
"1.6G"
""
"4096"
""
""

为简洁起见,我省略了一堆“”。如果我使用相同的拆分 键入字符串它完美地工作。

       QString mystring = "This is a sentence with words"

qDebug显示:

"This"
"is"
"a"
"sentence"
"with"
"words"

如何阻止这些“”被添加到QStringList?可以用不同的QRegExp来纠正吗?

1 个答案:

答案 0 :(得分:0)

查看QString::split(const QRegExp &rx, SplitBehavior behavior = KeepEmptyParts) const,有一个可选参数SplitBehavior,可让您指定如何处理空白部分。如果你保留默认的QString :: split()将保留空部分。要跳过,您需要将其设置为QString::SkipEmptyParts

因此,请将您的拆分更改为以下内容:

QStringList list=mystring.split(QRegExp("\\s"),QString::SkipEmptyParts);