VB中字符串常数

Since these constants are built into VBScript,you don't have to define them before using them. Use them anywhere in your code to represent the values shown for each.

Constant Value Description Translate
vbCr Chr(13) Carriage return. 回车符。
VbCrLf Chr(13) & Chr(10) Carriage return–lineFeed combination. 回车符和换行符

vbFormFeed

Chr(12) Form Feed; not useful in Microsoft Windows. 换页符,在Windows中不适用。
vbLf Chr(10) Line Feed. 换行符
vbNewLine Chr(13) & Chr(10) or Chr(10) Platform-specific newline character; whatever is appropriate for the platform. 平台指定的新行字符,适用于任何平台。

vbNullChar

Chr(0) Character having the value 0. ASCII码为0的字符。
vbNullString String having value 0 Not the same as a zero-length string (""); used for calling external procedures. 值为0的字符串,但和""不同。
vbTab Chr(9) Horizontal tab. 水平附签。
vbVerticalTab Chr(11) Vertical tab; not useful in Microsoft Windows. 垂直附签,在Windows中不适用。

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强制返回为文本 --------------------------...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办法, Format 或者FormatDateTime 竟然结果和...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace My ‘全局错误处理,新的解决方案直接...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用的爽呀,这篇文章写与2011年,看来我以前没...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选中的单元格进行处理 Dim m As Range, t...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integ...