gpt4 book ai didi

ms-access - String = 字符串比较风格(理论?)

转载 作者:行者123 更新时间:2023-12-05 01:22:21 24 4
gpt4 key购买 nike

我目前无法测试代码(没有笔记本电脑),但在 If 语句中如下所示:

Dim StrA As String, StrB As String

IF StrA = StrB Then
'code for true result
Else
'code for false result
End If

If 语句是否以二进制或文本方式检查字符串?

最佳答案

比较通常是文本的,stra=STRA,但是你可以使用StrComp:

 StrComp("stra","STRA",vbbinarycompare)

http://office.microsoft.com/en-ie/access-help/strcomp-function-HA001228914.aspx

Sub IsIt()
'Option Compare Database (default): True
'Option Compare Text : True
'Option Compare Binary : False
If "stra" = "STRA" Then
Debug.Print True
Else
Debug.Print False
End If
End Sub

关于ms-access - String = 字符串比较风格(理论?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13996156/

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