EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

str.hex...

Converting an unsigned integer in the hexadecimal form. Lower characters.

method str str.hexl (
   uint val
)

Parameters

val The unsigned integer value to be converted into the string.

Return value

Returns the object which method has been called.


str.hexu

Converting an unsigned integer in the hexadecimal form. ( upper characters ).

method str str.hexu (
   uint val
)

Parameters

val The unsigned integer value to be converted into the string.

Return value

Returns the object which method has been called.


hex2strl

Converting an unsigned integer in the hexadecimal form. ( lower characters ).

func str hex2strl<result> (
   uint val
)

Parameters

val The unsigned integer value to be converted into the string.

Return value

The new result string.


hex2stru

Converting an unsigned integer in the hexadecimal form. ( upper characters ).

func str hex2stru<result> (
   uint val
)

Parameters

val The unsigned integer value to be converted into the string.

Return value

The new result string.

Related links

Source