相关代码 |
|
Ch06-03-05.aspx 数据类型转换函数综合范例 Dim strA As String = "12345abcde" , intA As Integer = 10 Response.Write("字符串变量strA的值为:" & strA & "") Response.Write("数值变量intA的值为:" & intA & "") Response.Write("使用Val()函数将字符串转换成数值的运算结果为:") Response.Write(Val(strA) * 10 & "") Response.Write("使用Str()函数将数值转换成字符串的字符总长度为:") Response.Write(Len(Str(intA))& "个字") Response.Write("使用Format()函数将数值转换成特定格式的字符串:") Response.Write(Format(intA , "0000" )) %>
相关资源 |
|