Hàm VBScript CStr

❮ Toàn bộ tài liệu tham khảo VBScript

Hàm CStr chuyển đổi một biểu thức thành kiểu Chuỗi.

Cú pháp

CStr(expression)
Parameter Description
expression Required. Any valid expression

If expression is:

  • Boolean - then the CStr function will return a string containing true or false.
  • Date - then the CStr function will return a string that contains a date in the short-date format.
  • Null - then a run-time error will occur.
  • Empty - then the CStr function will return an empty string ("").
  • Error - then the CStr function will return a string that contains the word "Error" followed by an error number.
  • Other numeric - then the CStr function will return a string that contains the number.

Thí dụ

Thí dụ

<%

response.write(CStr("300000") & "<br />")
response.write(CStr(#10-05-25#) & "<br />")

%>

Đầu ra của đoạn mã trên sẽ là:

300000
10/5/2025

❮ Toàn bộ tài liệu tham khảo VBScript