标题: VB 中如何把 回车 或 换行符去掉? [打印本页] 作者: dengzhy 时间: 2008-5-12 10:44 标题: VB 中如何把 回车 或 换行符去掉? EG:
Dim a , b
a = "此机构编码已经被其他机构使用,请更改!
"
b = "此机构编码已经被其他机构使用,请更改!"
If a = b Then
MsgBox "a=b"
Else
MsgBox "a<>b"
End If
其中,字符串 a 中包含了个回车键作者: zte_boy 时间: 2008-5-12 11:15
用Replace函数
Dim a,str
a = "此机构编码已经被其他机构使用,请更改!
"
str = Replace(a, Chr(13) & Chr(10) , "")
Msgbox(str)作者: dengzhy 时间: 2008-5-12 11:36
谢谢!
问题已经解决!
Dim a , b
a = "此机构编码已经被其他机构使用,请更改!"
b = "此机构编码已经被其他机构使用,请更改!
a = Replace(a,vbCrLf,"")
b = Replace(b,vbCrLf,"")
If a = b Then
MsgBox "a=b"
Else
MsgBox "a<>b"
End If作者: walker1020 时间: 2008-5-12 11:46 标题: Please try the following script: If Trim(a) = Trim(b) Then
MsgBox "a=b"
Else
MsgBox "a<>b"
End If作者: zte_boy 时间: 2008-5-12 13:33
原帖由 walker1020 于 2008-5-12 11:46 发表
If Trim(a) = Trim(b) Then
MsgBox "a=b"
Else
MsgBox "ab"
End If