Get plain text from QString with HTML tags
str.remove(QRegExp("<[^>]*>"));
You need to strip off the HTML tags from the string. See this post for instance.
str.remove(QRegExp("<[^>]*>"));
You need to strip off the HTML tags from the string. See this post for instance.