Syntax
CStr(expr)
Group
Conversion
Description
Convert to a String.
Parameters
|
Description
|
expr
|
Convert a number or string value to a string value using the current locale (GetLocale).
|
Example
Sub Main
Debug.Print CStr(Sqr(2)) '"1.4142135623731" - US English locale
End Sub