0 Then bPrice = True -6ren">
gpt4 book ai didi

excel - 如何检查字符串 vba 中是否存在 "\"?

转载 作者:行者123 更新时间:2023-12-04 21:20:43 25 4
gpt4 key购买 nike

这是我的代码,但它不起作用:
enter image description here

strText = oSheet.Cells(1, 1).Text
If InStr(strText, "\") > 0 Then
bPrice = True
End If

如何检查字符串中是否存在“\”?

最佳答案

¥ 是 ASCII 165 dec。尝试,

strText = oSheet.Cells(1, 1).Text
If cbool(InStr(1, strText, ChrW(165))) Then
bPrice = True
End If

这是一个测试,以确保您获得正确的 ASCII dec 代码。使用您喜欢的单元格格式,选择它并运行这个短子。
sub find165()
dim str as string, i as long
str = activecell.text
for i = 1 to len(str)
debug.print ascw(mid(str, i, 1))
next i
end sub

查看 VBE 的“立即”窗口,了解单元格中显示的每个字符的 ASCII dec 代码。

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

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