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
QString( " %1" ).arg( 15, 1, 16 )
f
F
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.
toUpper()
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
1 year ago
viewed
826 times
active