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
- __init__(QCollator)
Creates a copy of other.
- caseSensitivity() → CaseSensitivity
See also
- compare(str, str) → int
TODO
- ignorePunctuation() → bool
See also
- locale() → QLocale
Returns the locale of the collator.
- numericMode() → bool
See also
- setCaseSensitivity(CaseSensitivity)
See also
- setIgnorePunctuation(bool)
See also
- setLocale(QLocale)
TODO
- setNumericMode(bool)
See also
- sortKey(str) → QCollatorSortKey
TODO
- swap(QCollator)
TODO