I am trying to create a QString that is a hexadecimal number with its letters in Capitals instead of small caps, how can this be done?
QString( " %1" ).arg( 15, 1, 16 )
gives f, and I would likef
f
Converting a string to uppercase:
QString( " %1" ).arg( 15, 1, 16 ).toUpper();
This returns an uppercase string. This method was called upper () in qt3.
Source: https://habr.com/ru/post/1750750/More articles:Need to use C # dll to call C ++ dll? - c ++How to provide a default image file for ImageCache to use and process when the original does not exist? - drupalDoes anyone have any experience using berkeley db with PHP? - phpWhat's a good way to sync native javascript code among projects? - javascripthttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1750749/capture-stdin-input-without-echoing-characters-to-screen&usg=ALkJrhi7D9JbkUTUy_VTNAtN7Y8SaP8m6gJava instruction package - javaHow to identify a process ending in Ruby open3 - ruby | fooobar.comHow to create iOS image buttons that scale well in different resolutions? - iphone"GNU Make not found. Try setting the GNUMAKE environment variable." - installDoes the inline code support the method [that wrote in it] in memory after completion? - c #All Articles