📄 qstringlist.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include <qstringlist.h>/*! \typedef QStringListIterator \relates QStringList The QStringListIterator typedef provides a Java-style const iterator for QStringList. QStringList provides both \l{Java-style iterators} and \l{STL-style iterators}. The Java-style const iterator is simply a typedef for QListIterator<QString>. \sa QMutableStringListIterator, QStringList::const_iterator*//*! \typedef QMutableStringListIterator \relates QStringList The QStringListIterator typedef provides a Java-style non-const iterator for QStringList. QStringList provides both \l{Java-style iterators} and \l{STL-style iterators}. The Java-style non-const iterator is simply a typedef for QMutableListIterator<QString>. \sa QStringListIterator, QStringList::iterator*//*! \class QStringList \brief The QStringList class provides a list of strings. \ingroup tools \ingroup shared \ingroup text \mainclass \reentrant QStringList inherits from QList\<QString\>. All of QList's functionality also applies to QStringList. For example, you can use isEmpty() to test whether the list is empty, and you can call functions like append(), prepend(), insert(), replace(), and remove() to modify a QStringList. In addition, QStringList provides a few convenience functions that make handling lists of strings easier. Like QList, QStringList is \l{implicitly shared}. QStringList provides fast index-based access as well as fast insertions and removals. Passing string lists as value parameters is both fast and safe. Strings can be added to a list using append(), operator+=(), or operator<<(). For example: \code QStringList fonts; fonts << "Arial" << "Helvetica" << "Times" << "Courier"; \endcode To iterate over a string, you can either use index positions or QList's Java-style and STL-style iterator types. Here are examples of each approach. Indexing: \code for (int i = 0; i < fonts.size(); ++i) cout << fonts.at(i).toLocal8Bit().constData() << endl; \endcode Java-style iterator: \code QStringListIterator i(fonts); while (i.hasNext()) cout << i.next().toLocal8Bit().constData() << endl; \endcode STL-style iterator: \code QStringList::const_iterator i; for (i = fonts.constBegin(); i != fonts.constEnd(); ++i) cout << (*i).toLocal8Bit().constData() << endl; \endcode QStringListIterator and QMutableStringListIterator are simply typedefs for QListIterator<QString> and QMutableListIterator<QString>. You can concatenate all the strings in a string list into a single string (with an optional separator) using join(). For example: \code QString str = fonts.join(","); // str == "Arial,Helvetica,Times,Courier" \endcode To break up a string into a string list, use QString::split(): \code QString str = "Arial,Helvetica,Times,Courier"; QStringList list = str.split(","); // list: ["Arial", "Helvetica", "Times", "Courier"] \endcode The argument to split can be a single character, a string, or a QRegExp. You can sort a string list with sort(), and extract a new list which contains only those strings which contain a particular substring (or match a particular regular expression) using the find() functions. For example: \code QStringList monospacedFonts = fonts.find(QRegExp("Courier|Fixed")); \endcode Similarly, the replace() function calls QString::replace() on each string in the string list in turn. Here's an example that uses it to replace all occurrences of "$QTDIR" with "/usr/lib/qt" in a string list: \code QStringList files; files << "$QTDIR/src/moc/moc.y" << "$QTDIR/src/moc/moc.l" << "$QTDIR/include/qconfig.h"; files.replace("$QTDIR", "/usr/lib/qt"); \endcode \sa QString, QStringListIterator, QMutableStringListIterator*//*! \fn QStringList::QStringList() Constructs an empty string list.*//*! \fn QStringList::QStringList(const QString &str) Constructs a string list that contains one string, \a str. Longer lists are easily created like this: \code list = (QStringList() << str1 << str2 << str3); \endcode*//*! \fn QStringList::QStringList(const QStringList &other) Constructs a copy of \a other. This operation takes \l{constant time}, because QStringList is \l{implicitly shared}. This makes returning a QStringList from a function very fast. If a shared instance is modified, it will be copied (copy-on-write), and that takes \l{linear time}. \sa operator=()*//*! \fn QStringList::QStringList(const QList<QString> &other) Constructs a copy of \a other. This operation takes \l{constant time}, because QStringList is \l{implicitly shared}. This makes returning a QStringList from a function very fast. If a shared instance is modified, it will be copied (copy-on-write), and that takes \l{linear time}. \sa operator=()*//*! \fn void QStringList::sort() Sorts the list of strings in ascending order (case sensitively). Sorting is performed using Qt's qSort() algorithm, which operates in \l{linear-logarithmic time}, i.e. O(\e{n} log \e{n}). If you want to sort your strings in an arbitrary order, consider using a QMap. For example, you could use a QMap\<QString, QString\> to create a case-insensitive ordering (e.g. with the keys being lower-case versions of the strings, and the values being the strings), or a QMap\<int, QString\> to sort the strings by some integer index. \sa qSort()*/void QtPrivate::QStringList_sort(QStringList *that){ qSort(*that);}#ifdef QT3_SUPPORT/*! \fn QStringList QStringList::split(const QChar &sep, const QString &str, bool allowEmptyEntries) \overload This version of the function uses a QChar as separator. \sa join() QString::section()*//*! \fn QStringList QStringList::split(const QString &sep, const QString &str, bool allowEmptyEntries) \overload This version of the function uses a QString as separator. If \a sep is an empty string, the return value is a list of one-character strings: split(QString(""), "four") returns the four-item list, "f", "o", "u", "r". If \a allowEmptyEntries is true, an empty string is inserted in the list wherever the separator matches twice without intervening text. \sa join() QString::section()*/#ifndef QT_NO_REGEXP/*! \fn QStringList QStringList::split(const QRegExp &sep, const QString &str, bool allowEmptyEntries) Splits the string \a str into strings wherever the regular expression \a sep occurs, and returns the list of those strings. If \a allowEmptyEntries is true, an empty string is inserted in the list wherever the separator matches twice without intervening text. For example, if you split the string "a,,b,c" on commas, split() returns the three-item list "a", "b", "c" if \a allowEmptyEntries is false (the default), and the four-item list "a", "", "b", "c" if \a allowEmptyEntries is true. Use \c{split(QRegExp("\\s+"), str)} to split on arbitrary amounts of whitespace. If \a sep does not match anywhere in \a str, split() returns a single element list with the element containing the original string, \a str. \sa join() QString::section()*/#endif#endif // QT3_SUPPORT/*! \fn QStringList QStringList::filter(const QString &str, Qt::CaseSensitivity cs) const Returns a list of all the strings containing the substring \a str. If \a cs is \l Qt::CaseSensitive (the default), the string comparison is case sensitive; otherwise the comparison is case insensitive. \code QStringList list; list << "Bill Murray" << "John Doe" << "Bill Clinton"; QStringList result = list.filter("Bill"); // result: ["Bill Murray", "Bill Clinton"] \endcode
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -