CStr Function

Syntax

CStr(expr)

Group

Conversion

Description

Convert to a String.

Parameters

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

Sub Main
    Debug.Print CStr(Sqr(2)) '"1.4142135623731" - US English locale
End Sub