QString中使用字符串时,解析时有“/“等符号时,当成是正则表达式来处理,如果有"<br>"等标签时,当成是Htm标签处理,而且正则表达式的优先级要较Html高。
例如:
int color = 0xFF0000;
abc= "QString("<fontcolor=#")+QString::number(color,16)+QString(">")+QString("HelloWorld!")+QString("</font>");
QToolTip::showText(point,abc);
字符串abc中的“Hello World!”显示为红色,被当作是Html来解析,如果在字符串中加入了"\n”则不能当前html来解析
例如:
abc= QString("<fontcolor=#")+QString::number(color,16)+QString(">")+QString("HelloWorld!")+QString("</font>")+“\n”;
QToolTip::showText(point,abc);
字符串abc中的“Hello World!”不能显示为红色,
原文链接:https://www.f2er.com/regex/362772.html