I'm trying to create a QString which is a hexadecimal number with its letter digits in Capitals instead of small caps, how can it be done?
QString( " %1" ).arg( 15, 1, 16 ) yields f and I'd like F

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

By converting the string to upper case:

QString( " %1" ).arg( 15, 1, 16 ).toUpper();

This returns an uppercase string. The method used to be called upper() in qt3.

link|improve this answer
2  
I guess that should be toUpper(). – Job Jun 19 '10 at 10:11
Right you are. Edited. – dantje Jun 20 '10 at 7:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.