The QTextDecoder class provides a state-based decoder. More...
Header: | #include <QTextDecoder> |
CMake: | find_package(Qt6 COMPONENTS Core5Compat REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Core5Compat) |
qmake: | QT += core5compat |
Note: All functions in this class are reentrant.
QTextDecoder(const QTextCodec *codec, QTextCodec::ConversionFlags flags) | |
QTextDecoder(const QTextCodec *codec) | |
~QTextDecoder() | |
QString | toUnicode(const char *chars, int len) |
QString | toUnicode(const QByteArray &ba) |
void | toUnicode(QString *target, const char *chars, int len) |
A text decoder converts text from an encoded text format into Unicode using a specific codec.
The decoder converts text in this format into Unicode, remembering any state that is required between calls.
See also QTextCodec::makeDecoder() and QTextEncoder.
Constructs a text decoder for the given codec and conversion flags.
Constructs a text decoder for the given codec.
Destroys the decoder.
Converts the first len bytes in chars to Unicode, returning the result.
If not all characters are used (e.g. if only part of a multi-byte encoding is at the end of the characters), the decoder remembers enough state to continue with the next call to this function.
This is an overloaded function.
Converts the bytes in the byte array specified by ba to Unicode and returns the result.
This is an overloaded function.
The converted string is returned in target.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qtextdecoder.html