VB 中chr(10)、chr(13)和vblf、vbcr、vbcrlf的分别

简介: <h1><span style="font-family:KaiTi_GB2312; font-size:24px">1、共同点:</span></h1> <p><span style="font-family:KaiTi_GB2312; font-size:24px">   chr(10):换行,相当于VBLF</span></p> <p><span style="font-fami

1、共同点:

   chr(10):换行,相当于VBLF

   chr(13):回车,相当于VBCR

   chr(13)+chr(10):回车+换行,相当于VBCRLF

   cr是回车,只有回车,是到本行的最头上;lf是换行,到下一行;crlf是到下一行的最头上

 

2、使用效果

        1)、在msgbox中效果一样

         Dim a, b, c As String
         a = "111" & vbCr & "222"
         MsgBox a
         MsgBox Len(a)                      '7
        
         b = "111" & vbLf & "222"
         MsgBox b
         MsgBox Len(b)                      '7
        
         c = "111" & vbCrLf & "222"
         MsgBox c
         MsgBox Len(c)                      '8
     

               

    2)、窗体输出中的效果

        Chr(13) 、 Chr(10) 、 Chr(13)+Chr(10) 是换一行;
        Chr(10)+Chr(13)、两个Chr(13)、两个Chr(10) 是换两行

    3)、在Text输出中的效果

         只有只有chr(10)+chr(13)或者VBCRLF可以换行,其他的没有换行的效果::需要注意,换行的前提是Text控件中属性MultiLine必须为True。      

相关文章
|
3月前
|
自然语言处理 关系型数据库 数据处理
在 Postgres 中使用 Chr
【8月更文挑战第11天】
57 1
|
4月前
|
编解码 测试技术 Python
【Python】已解决:UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 0-1: ordinal not i
【Python】已解决:UnicodeEncodeError: ‘ascii’ codec can’t encode characters in position 0-1: ordinal not i
746 1
ASCII码对应表chr(9)、chr(10)、chr(13)、chr(32)、chr(34)、chr(39)
chr(9) tab空格       chr(10) 换行      chr(13) 回车        Chr(13)&chr(10) 回车换行       chr(32) 空格符       chr(34) 双引号       chr(39) 单引号 chr(33) !        chr(...
1398 0
|
6月前
|
C++
大小写转换——islower/isupper或者tolwer/toupper函数的用法
大小写转换——islower/isupper或者tolwer/toupper函数的用法
58 0
|
Python
python3中,len()、isalpha()、isspace()、isdigit()、isalnum()实例
# 实例:使用while循环 ```python import string s1 = input('请输入一个字符串:\n') letters = 0 space = 0 digit = 0 others = 0 i = 0 while i < len(s1):     c = s1[i]     i += 1     if c.isalpha():         letters += 1     elif c.isspace():         space += 1     elif c.isdigit():         digit += 1   
52 0
零基础VB教程062期:常用数学函数第二节 弧度、进制转换、hex/oct/round/fix/sqr等
零基础VB教程062期:常用数学函数第二节 弧度、进制转换、hex/oct/round/fix/sqr等
|
Python
浅谈Python内置函数chr、ord
浅谈Python内置函数chr、ord
352 0
浅谈Python内置函数chr、ord
内置函数值 -- chr() ord() -- 字符和ascii的转换
chr(i)   Return the string representing a character whose Unicode code point is the integer i. For example, chr(97) returns the string &#39;a&#39;, while chr(8364) returns the string &#39;€&#39;. This is the inverse of ord().   The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in base 16). Valu
164 0