CStr Function
Returns an expression that has been converted to a Variant of subtype String.
Syntax
CStr(expression)
Remarks
The expression argument is any valid expression.
Use the CStr function to provide conversions from any data type to a String subtype. CStr forces the results to be expressed as a String.
The CStr function uses the locale setting of your system to determine how to perform conversions. Different decimal separators are properly recognized, depending on the locale setting.
The data in expression determines what is returned according to the following table:
If expression is |
CStr returns |
---|---|
Boolean |
A String containing True or False. |
Date |
A String containing a date in the short-date format of your system. |
Null |
A run-time error. |
Empty |
A zero-length String (""). |
Error |
A String containing the word Error followed by the error number. |
Other numeric |
A String containing the number. |
The following example uses the CStr function to convert a numeric value to a String:
Dim MyDouble, MyString
MyDouble = 437.324 ' MyDouble is a Double.
MyString = CStr(MyDouble) ' MyString contains "437.324".
Requirements
Change History
Date |
History |
Reason |
---|---|---|
September 2009 |
Modified remarks. |
Customer feedback. |
See Also
CBool Function
CByte Function
CCur Function
CDate Function
CDbl Function
CInt Function
CLng Function
CSng Function