I have a need to remove multiple lines except the first line in a string. For example, “line1\n\line2\nline3” should be converted to “line1”. At the beginning, I used the following […]

The TAB character literal can be written as ‘\t’ or ‘    ‘ in your C/C++ source code. They represent the same character. Character literals are enclosed in single quotes […]

Only after you read my post about how Qt Creator interacts with GDB and what Qt pretty printers are, can you have some basic background knowledge about how to write […]

Occasionally, we need to convert a number that represents the code point of a character to a QString or QChar. You may want to use the following constructor of QString: […]

qt .pro file parser

The parsing function for .pro file is in QMakeParser::read. It uses two buffers: tokBuff: store the parsed tokens of a .pro file xprBuff: only store a line(or part of a […]