首选如果 Len(myString) 0 然后结束如果 myString 那么

检查字符串是否为零长度时,检查字符串的长度(而不是将字符串与空字符串进行比较)更好,更有效。

Const myString As String = vbNullString

'Prefer this method when checking if myString is a zero-length string
If Len(myString) = 0 Then
    Debug.Print "myString is zero-length"
End If

'Avoid using this method when checking if myString is a zero-length string
If myString = vbNullString Then
    Debug.Print "myString is zero-length"
End If