📜  vbscript 检查字符串是否为空 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.949000             🧑  作者: Mango

代码示例1
Dim strText = ""

'both of these return true
If Len(strText) = 0 Then
  'empty
End If

If strText = "" Then
  'empty
End If