QStringConverter Class

The QStringConverter class provides a base class for encoding and decoding text. More...

Header: #include <QStringConverter>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core
Inherited By:

QStringDecoder and QStringEncoder

Note: All functions in this class are reentrant.

Public Types

enum Encoding { Utf8, Utf16, Utf16BE, Utf16LE, Utf32, …, System }
enum class Flag { Default, ConvertInvalidToNull, WriteBom, ConvertInitialBom, Stateless }
flags Flags

Public Functions

bool hasError() const
bool isValid() const
const char *name() const
void resetState()

Static Public Members

std::optional<Encoding> encodingForData(QByteArrayView data, char16_t expectedFirstCharacter = 0)
std::optional<Encoding> encodingForHtml(QByteArrayView data)
std::optional<Encoding> encodingForName(const char *name)
const char *nameForEncoding(QStringConverter::Encoding e)

Detailed Description

Qt uses UTF-16 to store, draw and manipulate strings. In many situations you may wish to deal with data that uses a different encoding. Most text data transferred over files and network connections is encoded in UTF-8.

The QStringConverter class is a base class for the QStringEncoder and QStringDecoder classes that help with converting between different text encodings. QStringDecoder can decode a string from an encoded representation into UTF-16, the format Qt uses internally. QStringEncoder does the opposite operation, encoding UTF-16 encoded data (usually in the form of a QString) to the requested encoding.

The supported encodings are:

  • UTF-8
  • UTF-16
  • UTF-16BE
  • UTF-16LE
  • UTF-32
  • UTF-32BE
  • UTF-32LE
  • ISO-8859-1 (Latin-1)
  • The system encoding

QStringConverters can be used as follows to convert some encoded string to and from UTF-16.

Suppose you have some string encoded in UTF-8, and want to convert it to a QString. The simple way to do it is to use a QStringDecoder like this:

QByteArray encodedString = "...";
auto toUtf16 = QStringDecoder(QStringDecoder::Utf8);
QString string = toUtf16(encodedString);

After this, string holds the text in decoded form. Converting a string from Unicode to the local encoding is just as easy using the QStringEncoder class:

QString string = "...";
auto fromUtf16 = QStringEncoder(QStringEncoder::Utf8);
QByteArray encodedString = fromUtf16(string);

To read or write text files in various encodings, use QTextStream and its setEncoding() function.

Some care must be taken when trying to convert the data in chunks, for example, when receiving it over a network. In such cases it is possible that a multi-byte character will be split over two chunks. At best this might result in the loss of a character and at worst cause the entire conversion to fail.

Both QStringEncoder and QStringDecoder make this easy, by tracking this in an internal state. So simply calling the encoder or decoder again with the next chunk of data will automatically continue encoding or decoding the data correctly:

auto toUtf16 = QStringDecoder(QStringDecoder::Utf8);

QString string;
while (new_data_available()) {
    QByteArray chunk = get_new_data();
    string += toUtf16(chunk);
}

The QStringDecoder object maintains state between chunks and therefore works correctly even if a multi-byte character is split between chunks.

QStringConverter objects can't be copied because of their internal state, but can be moved.

See also QTextStream, QStringDecoder, and QStringEncoder.

Member Type Documentation

enum QStringConverter::Encoding

ConstantValueDescription
QStringConverter::Utf80Create a converter to or from UTF-8
QStringConverter::Utf161Create a converter to or from UTF-16. When decoding, the byte order will get automatically detected by a leading byte order mark. If none exists or when encoding, the system byte order will be assumed.
QStringConverter::Utf16BE3Create a converter to or from big-endian UTF-16.
QStringConverter::Utf16LE2Create a converter to or from little-endian UTF-16.
QStringConverter::Utf324Create a converter to or from UTF-32. When decoding, the byte order will get automatically detected by a leading byte order mark. If none exists or when encoding, the system byte order will be assumed.
QStringConverter::Utf32BE6Create a converter to or from big-endian UTF-32.
QStringConverter::Utf32LE5Create a converter to or from little-endian UTF-32.
QStringConverter::Latin17Create a converter to or from ISO-8859-1 (Latin1).
QStringConverter::System8Create a converter to or from the underlying encoding of the operating systems locale. This is always assumed to be UTF-8 for Unix based systems. On Windows, this converts to and from the locale code page.

enum class QStringConverter::Flag
flags QStringConverter::Flags

ConstantValueDescription
QStringConverter::Flag::Default0Default conversion rules apply.
QStringConverter::Flag::ConvertInvalidToNull0x2If this flag is set, each invalid input character is output as a null character. If it is not set, invalid input characters are represented as QChar::ReplacementCharacter if the output encoding can represent that character, otherwise as a question mark.
QStringConverter::Flag::WriteBom0x4When converting from a QString to an output encoding, write a QChar::ByteOrderMark as the first character if the output encoding supports this. This is the case for UTF-8, UTF-16 and UTF-32 encodings.
QStringConverter::Flag::ConvertInitialBom0x8When converting from an input encoding to a QString the QStringDecoder usually skips an leading QChar::ByteOrderMark. When this flag is set, the byte order mark will not be skipped, but converted to utf-16 and inserted at the start of the created QString.
QStringConverter::Flag::Stateless0x1Ignore possible converter states between different function calls to encode or decode strings. This will also cause the QStringConverter to raise an error if an incomplete sequence of data is encountered.

The Flags type is a typedef for QFlags<Flag>. It stores an OR combination of Flag values.

Member Function Documentation

[static] std::optional<Encoding> QStringConverter::encodingForData(QByteArrayView data, char16_t expectedFirstCharacter = 0)

Returns the encoding for the content of data if it can be determined. expectedFirstCharacter can be passed as an additional hint to help determine the encoding.

The returned optional is empty, if the encoding is unclear.

[static] std::optional<Encoding> QStringConverter::encodingForHtml(QByteArrayView data)

Tries to determine the encoding of the HTML in data by looking at leading byte order marks or a charset specifier in the HTML meta tag. If the optional is empty, the encoding specified is not supported by QStringConverter. If no encoding is detected, the method returns Utf8.

See also QStringDecoder::decoderForHtml().

[static] std::optional<Encoding> QStringConverter::encodingForName(const char *name)

Convert name to the corresponding Encoding member, if there is one.

If the name is not the name of a codec listed in the Encoding enumeration, std::nullopt is returned. Such a name may, none the less, be accepted by the QStringConverter constructor when Qt is built with ICU, if ICU provides a converter with the given name.

bool QStringConverter::hasError() const

Returns true if a conversion could not correctly convert a character. This could for example get triggered by an invalid UTF-8 sequence or when a character can't get converted due to limitations in the target encoding.

bool QStringConverter::isValid() const

Returns true if this is a valid string converter that can be used for encoding or decoding text.

Default constructed string converters or converters constructed with an unsupported name are not valid.

const char *QStringConverter::name() const

Returns the canonical name of the encoding this QStringConverter can encode or decode. Returns a nullptr if the converter is not valid.

See also isValid().

[static] const char *QStringConverter::nameForEncoding(QStringConverter::Encoding e)

Returns the canonical name for encoding e.

void QStringConverter::resetState()

Resets the internal state of the converter, clearing potential errors or partial conversions.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.