Frage

I have QString with html tags. Why can i get plain text from this string?

War es hilfreich?

Lösung

You need to strip off the HTML tags from the string. See this post for instance.

Andere Tipps

str.remove(QRegExp("<[^>]*>"));

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top