VBA学习笔记之Text(六)——删除字符串中多余的空格
(2012-10-19 08:30:00)
标签:
excel
ltrim函数
rtrim函数
trim函数
|
分类:
VBA
|
-
LTrim函数删除字符串前面的空格;
- RTrim函数删除字符串后面的空格;
- Trim函数删除字符串两头的空格(和excel中的函数Trim不同之处在于,其不能将字符串中间多余的空格删除)
演示代码:
Sub DemoTrims()
Dim str As
String
str = " this
is
a string to
trim.
"
Debug.Print
"LTrim:", ">"; LTrim(str); "<"
Debug.Print
"RTrim:", ">"; RTrim(str); "<"
Debug.Print
"Trim:", ">"; Trim(str); "<"
Debug.Print
"Excel Trim:", ">"; _
WorksheetFunction.Trim(str); "<"
End Sub
运行结果:
LTrim:
>this
is
a string to
trim.
<</DIV>RTrim: >
this
is
a string to
trim.<<BR>Trim:
>this
is
a string to
trim.<<BR>Excel
Trim: >this is a
string to
trim.<<BR>
【应用】在字符串字符计算、字符查找、比较中经常用到。
喜欢
0
赠金笔
加载中,请稍候......