gpt4 book ai didi

excel - VBA - 检查字符串中是否存在 "Comma"

转载 作者:行者123 更新时间:2023-12-04 21:15:27 29 4
gpt4 key购买 nike

我正在查看字符串是否有逗号。

假设我有两个用户名“David, Boon”和“David Blind”。

我需要根据用户名中是否存在“,”的条件编写一个 if 循环。有没有办法检查? .Net 中的包含之类的东西

请分享您的想法。

最佳答案

您可以使用 InStr检查一个字符串在另一个字符串中的存在/位置的函数:

Dim myVar As String
myVar = "foo,bar"
If InStr(1, myVar, ",") > 0 Then
'There was a comma
End If

关于excel - VBA - 检查字符串中是否存在 "Comma",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44134947/

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