其他分享
首页 > 其他分享> > c – 如何从QStringList中删除空字符串和空字符串?

c – 如何从QStringList中删除空字符串和空字符串?

作者:互联网

我有一个QStringList,我需要清理一些无意义的元素:空字符串和空字符串.

我找不到QStringList快捷方式的功能.
清除空/空字符串的最简单方法是什么?

解决方法:

myQStringList.removeAll(QString("")); // Returns the number of entries removed

与空字符串相比,空字符串QString(“”)和空字符串QString()都返回true.
然后,QList::removeAll(const T &value)的测试将从列表中删除空字符串和空字符串.

标签:qstring,qlist,c,qt
来源: https://codeday.me/bug/20190724/1521646.html