QCollator

PyQt5.QtCore.QCollator

Description

The QCollator class compares strings according to a localized collation algorithm.

QCollator is initialized with a QLocale and an optional collation strategy. It tries to initialize the collator with the specified values. The collator can then be used to compare and sort strings in a locale dependent fashion.

A QCollator object can be used together with template based sorting algorithms such as std::sort to sort a list of QStrings.

In addition to the locale and collation strategy, several optional flags can be set that influence the result of the collation.

Methods

__init__(locale: QLocale = QLocale())

Constructs a QCollator from locale. If locale is not specified the system鈥檚 default locale is used.

See also

setLocale().


__init__(QCollator)

Creates a copy of other.


caseSensitivity() → CaseSensitivity

compare(str, str) → int

TODO


ignorePunctuation() → bool

locale() → QLocale

Returns the locale of the collator.


numericMode() → bool

See also

setNumericMode().


setCaseSensitivity(CaseSensitivity)

See also

caseSensitivity().


setIgnorePunctuation(bool)

setLocale(QLocale)

TODO


setNumericMode(bool)

See also

numericMode().


sortKey(str) → QCollatorSortKey

TODO


swap(QCollator)

TODO