I have a QString like this ">>> This is an Arrow."
, now I want to have >>>
in bold and red, How to do that ?
i have looked over some pages and found this syntax
QString redPart = QString("<span style=" color:#ff0000;">%1</span>").arg(">>>");
but it gives some error like ")" missing and, I am not able to figure it out.