IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QStringList Class

The QStringList class provides a list of strings.

All functions in this class are reentrant.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QStringList Class

  • Header: QStringList

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Core)

    target_link_libraries(mytarget PRIVATE Qt6::Core)

  • qmake: QT += core

  • Inherits: QList

  • Group: QStringList is part of tools, Implicitly Shared Classes, string-processing

Detailed Description

QStringList inherits from QList<QString>. Like QList, QStringList is implicitly shared. It provides fast index-based access as well as fast insertions and removals. Passing string lists as value parameters is both fast and safe.

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(), removeAll(), removeAt(), removeFirst(), removeLast(), and removeOne() to modify a QStringList. In addition, QStringList provides a few convenience functions that make handling lists of strings easier:

Initializing

The default constructor creates an empty list. You can use the initializer-list constructor to create a list with elements:

 
Sélectionnez
    QStringList fonts = { "Arial", "Helvetica", "Times" };

Adding Strings

Strings can be added to a list using the insert(), append(), operator+=() and operator<<() functions.

operator<<() can be used to conveniently add multiple elements to a list:

 
Sélectionnez
    fonts &lt;&lt; "Courier" &lt;&lt; "Verdana";

Iterating Over the Strings

Manipulating the Strings

QStringList provides several functions allowing you to manipulate the contents of a list. You can concatenate all the strings in a string list into a single string (with an optional separator) using the join() function. For example:

 
Sélectionnez
    QString str = fonts.join(", ");
     // str == "Arial, Helvetica, Times, Courier"

The argument to join can be a single character or a string.

To break up a string into a string list, use the QString::split() function:

 
Sélectionnez
    QStringList list;
    list = str.split(',');
     // list: ["Arial", "Helvetica", "Times", "Courier"]

The argument to split can be a single character, a string or a QRegularExpression.

In addition, the operator+() function allows you to concatenate two string lists into one. To sort a string list, use the sort() function.

QString list also provides the filter() function which lets you to extract a new list which contains only those strings which contain a particular substring (or match a particular regular expression):

 
Sélectionnez
    QStringList monospacedFonts = fonts.filter(QRegularExpression("Courier|Fixed"));

The contains() function tells you whether the list contains a given string, while the indexOf() function returns the index of the first occurrence of the given string. The lastIndexOf() function on the other hand, returns the index of the last occurrence of the string.

Finally, the replaceInStrings() function calls QString::replace() on each string in the string list in turn. For example:

 
Sélectionnez
    QStringList files;
    files &lt;&lt; "$QTDIR/src/moc/moc.y"
          &lt;&lt; "$QTDIR/src/moc/moc.l"
          &lt;&lt; "$QTDIR/include/qconfig.h";

    files.replaceInStrings("$QTDIR", "/usr/lib/qt");
    // files: [ "/usr/lib/qt/src/moc/moc.y", ...]

See Also

See also QString

Member Function Documentation

 

QStringList::QStringList(const QString &str)

Constructs a string list that contains the given string, str. Longer lists are easily created like this:

 
Sélectionnez
    QStringList longerList = (QStringList() &lt;&lt; str1 &lt;&lt; str2 &lt;&lt; str3);
See Also

See also append()

QStringList::QStringList(const QList<QString> &other)

Constructs a copy of other.

This operation takes constant time, because QStringList is 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 linear time.

See Also

See also operator=()

[since 5.4] QStringList::QStringList(QList<QString> &&other)

This is an overloaded function.

Move-constructs from QList<QString>.

After a successful construction, other will be empty.

This function was introduced in Qt 5.4.

bool QStringList::contains(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const

Returns true if the list contains the string str; otherwise returns false. The search is case insensitive if cs is Qt::CaseInsensitive; the search is case sensitive by default.

See Also

[since 5.10] bool QStringList::contains(QLatin1StringView str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const

This is an overloaded function.

Returns true if the list contains the string str; otherwise returns false. The search is case insensitive if cs is Qt::CaseInsensitive; the search is case sensitive by default.

This function was introduced in Qt 5.10.

See Also

[since 5.12] bool QStringList::contains(QStringView str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const

This is an overloaded function.

Returns true if the list contains the string str; otherwise returns false. The search is case insensitive if cs is Qt::CaseInsensitive; the search is case sensitive by default.

This function was introduced in Qt 5.12.

QStringList QStringList::filter(const QString &str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const

Returns a list of all the strings containing the substring str.

If cs is Qt::CaseSensitive (the default), the string comparison is case sensitive; otherwise the comparison is case insensitive.

 
Sélectionnez
    QStringList list;
    list &lt;&lt; "Bill Murray" &lt;&lt; "John Doe" &lt;&lt; "Bill Clinton";

    QStringList result;
    result = list.filter("Bill");
    // result: ["Bill Murray", "Bill Clinton"]

This is equivalent to

 
Sélectionnez
    QStringList result;
    foreach (const QString &amp;str, list) {
        if (str.contains("Bill"))
            result += str;
    }
See Also

See also contains()

[since 5.14] QStringList QStringList::filter(QStringView str, Qt::CaseSensitivity cs = Qt::CaseSensitive) const

This is an overloaded function.

This function was introduced in Qt 5.14.

[since 5.0] QStringList QStringList::filter(const QRegularExpression &re) const

This is an overloaded function.

Returns a list of all the strings that match the regular expression re.

This function was introduced in Qt 5.0.

[since 5.0] qsizetype QStringList::indexOf(const QRegularExpression &re, qsizetype from = 0) const

This is an overloaded function.

Returns the index position of the first exact match of re in the list, searching forward from index position from. Returns -1 if no item matched.

This function was introduced in Qt 5.0.

See Also

See also lastIndexOf()

QString QStringList::join(const QString &separator) const

Joins all the string list's strings into a single string with each element separated by the given separator (which can be an empty string).

See Also

See also QString::split()

[since 5.14] QString QStringList::join(QStringView separator) const

This is an overloaded function.

This function was introduced in Qt 5.14.

[since 5.8] QString QStringList::join(QLatin1StringView separator) const

This function overloads join().

This function was introduced in Qt 5.8.

[since 5.0] QString QStringList::join(QChar separator) const

This function overloads join().

This function was introduced in Qt 5.0.

[since 5.0] qsizetype QStringList::lastIndexOf(const QRegularExpression &re, qsizetype from = -1) const

This is an overloaded function.

Returns the index position of the last exact match of re in the list, searching backward from index position from. If from is -1 (the default), the search starts at the last item. Returns -1 if no item matched.

This function was introduced in Qt 5.0.

See Also

See also indexOf()

qsizetype QStringList::removeDuplicates()

This function removes duplicate entries from a list. The entries do not have to be sorted. They will retain their original order.

Returns the number of removed entries.

QStringList &QStringList::replaceInStrings(const QString &before, const QString &after, Qt::CaseSensitivity cs = Qt::CaseSensitive)

Returns a string list where every string has had the before text replaced with the after text wherever the before text is found. The before text is matched case-sensitively or not depending on the cs flag.

For example:

 
Sélectionnez
    QStringList list;
    list &lt;&lt; "alpha" &lt;&lt; "beta" &lt;&lt; "gamma" &lt;&lt; "epsilon";
    list.replaceInStrings("a", "o");
    // list == ["olpho", "beto", "gommo", "epsilon"]
See Also

See also QString::replace()

[since 5.14] QStringList &QStringList::replaceInStrings(QStringView before, QStringView after, Qt::CaseSensitivity cs = Qt::CaseSensitive)

This is an overloaded function.

This function was introduced in Qt 5.14.

[since 5.14] QStringList &QStringList::replaceInStrings(const QString &before, QStringView after, Qt::CaseSensitivity cs = Qt::CaseSensitive)

This is an overloaded function.

This function was introduced in Qt 5.14.

[since 5.14] QStringList &QStringList::replaceInStrings(QStringView before, const QString &after, Qt::CaseSensitivity cs = Qt::CaseSensitive)

This is an overloaded function.

This function was introduced in Qt 5.14.

[since 5.0] QStringList &QStringList::replaceInStrings(const QRegularExpression &re, const QString &after)

This is an overloaded function.

Replaces every occurrence of the regular expression re, in each of the string lists's strings, with after. Returns a reference to the string list.

For example:

 
Sélectionnez
    QStringList list;
    list &lt;&lt; "alpha" &lt;&lt; "beta" &lt;&lt; "gamma" &lt;&lt; "epsilon";
    list.replaceInStrings(QRegularExpression("^a"), "o");
    // list == ["olpha", "beta", "gamma", "epsilon"]

For regular expressions that contain capturing groups, occurrences of \1, \2, ..., in after are replaced with the string captured by the corresponding capturing group.

For example:

 
Sélectionnez
    QStringList list;
    list &lt;&lt; "Bill Clinton" &lt;&lt; "Murray, Bill";
    list.replaceInStrings(QRegularExpression("^(.*), (.*)$"), "\\2 \\1");
    // list == ["Bill Clinton", "Bill Murray"]

This function was introduced in Qt 5.0.

void QStringList::sort(Qt::CaseSensitivity cs = Qt::CaseSensitive)

Sorts the list of strings in ascending order. If cs is Qt::CaseSensitive (the default), the string comparison is case sensitive; otherwise the comparison is case insensitive.

Sorting is performed using the STL's std::sort() algorithm, which averages linear-logarithmic time, i.e. O(n log n).

If you want to sort your strings in an arbitrary order, consider using the QMap class. 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.

QStringList QStringList::operator+(const QStringList &other) const

Returns a string list that is the concatenation of this string list with the other string list.

See Also

See also append()

QStringList &QStringList::operator<<(const QString &str)

Appends the given string, str, to this string list and returns a reference to the string list.

See Also

See also append()

QStringList &QStringList::operator<<(const QStringList &other)

This is an overloaded function.

Appends the other string list to the string list and returns a reference to the latter string list.

[since 5.4] QStringList &QStringList::operator<<(const QList<QString> &other)

This is an overloaded function.

Appends the other string list to the string list and returns a reference to the latter string list.

This function was introduced in Qt 5.4.

[since 5.4] QStringList &QStringList::operator=(const QList<QString> &other)

Copy assignment operator from QList<QString>. Assigns the other list of strings to this string list.

After the operation, other and *this will be equal.

This function was introduced in Qt 5.4.

[since 5.4] QStringList &QStringList::operator=(QList<QString> &&other)

This is an overloaded function.

Move assignment operator from QList<QString>. Moves the other list of strings to this string list.

After the operation, other will be empty.

This function was introduced in Qt 5.4.

Related Non-Members

 

[alias] QMutableStringListIterator

The QStringListIterator type definition provides a Java-style non-const iterator for QStringList.

QStringList provides both Java-style iterators and STL-style iterators. The Java-style non-const iterator is simply a type definition for QMutableListIterator<QString>.

See Also

[alias] QStringListIterator

The QStringListIterator type definition provides a Java-style const iterator for QStringList.

QStringList provides both Java-style iterators and STL-style iterators. The Java-style const iterator is simply a type definition for QListIterator<QString>.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+