MK$ - QB64 Wiki

MK$

From QB64 Wiki

Revision as of 20:43, 4 January 2012 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The _MK$ function can convert any numerical type into an ASCII STRING value that must be converted back using _CV.


Syntax:

string_value$ = _MK$(numerical_type, numerical_value)


Description:

  • The numerical type is any QB or QB64 number type including: INTEGER, LONG, SINGLE, DOUBLE, _INTEGER64, _UNSIGNED, _BYTE or _BIT.
  • The actual numerical value must match the numerical type used.
  • Supports converting any Qbasic or QB64 numerical value into a string value.
  • Some resulting ASCII string characters might not be able to be printed to the screen.


See also:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page