CStr Function

Syntax              CStr(expr)

Group                Conversion

Description       Convert to a String.

Parameter         Description

expr                    Convert a number or string value to a string value using the current locale (GetLocale).

Example            '#Language "WWB-COM"
Sub Main
    Debug.Print CStr(Sqr(2)) '"1.4142135623731" - US English locale
End Sub