Difference between revisions of "F$STRING()"

From VSI OpenVMS Wiki
Jump to: navigation, search
(Created page with "'''F$STRING()''' is a lexical function that converts integers to strings. =Syntax= F$STRING(integer to convert) =Example= <nowiki> $ number = 1 $ stri...")
 
 
Line 1: Line 1:
'''F$STRING()''' is a [[Lexical functions|lexical function]] that converts integers to strings.
+
'''F$STRING()''' is a [[Lexical functions|lexical function]] that converts [[Integer|integers]] to [[String|strings]].
  
 
=Syntax=
 
=Syntax=

Latest revision as of 10:53, 28 November 2019

F$STRING() is a lexical function that converts integers to strings.

Syntax

F$STRING(integer to convert)

Example

$ number = 1
$ string = f$string(number)
$ show symbol string
   STRING = "1"