gpt4 book ai didi

vb.net - 如果不是 String.Empty 忽略空字符串 - VB.NET

转载 作者:行者123 更新时间:2023-12-04 16:30:24 25 4
gpt4 key购买 nike

我有一个字符串数组,我正在遍历它们,但字符串可能为空,所以我正在尝试:

For Each Component As String In Components
If Component IsNot String.Empty Then
'Work your magic
End If
Next

但是如果 Component 是一个空字符串,逻辑仍然会触发。我也试过
If Component <> "" Then 

End If

结果相同。那么我错过了什么?

最佳答案

  • 确保您的列表类型为 string
  • 使用 String.IsNullOrEmpty 方法。
    Sub Main
    Dim foo As String
    foo = "Non-Empty string"
    If Not String.IsNullOrEmpty(foo) Then
    Console.WriteLine("Foo is not empty.")
    End If
    End Sub
  • 关于vb.net - 如果不是 String.Empty 忽略空字符串 - VB.NET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3461385/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com