首页  >  Word

比较运算符的应用举例

Word 2024-04-15 15:00:11 35

本文为随书问题参考答案

表达式代码说明
Range(“B2”).Value Like “李*”判断活动工作表B2中的数据是否以“李”字开头
Range(“B2”).Value Like “???”判断活动工作表B2中的数据是否由三个字符组成
Range(“B2”).Value Like “#*”判断活动工作表B2中的数据是否以数字开头
Range(“B2”).Value Like “[0-9]”判断活动工作表B2中的数据是否为0到9的数字中的其中之一
Range(“B2”).Value Like “[!abcdefg]”判断活动工作表B2中的数据是否是“abcdefg”之外的单个字符

下面的示例代码对你理解Like及通配符的运用可能会有点帮助:

Sub 举例()
Dim a As Boolean
a = "aBBBa" Like "a*a" '返回 True。
ak = "F" Like "[A-Z]" '返回 True。
a = "F" Like "[!A-Z]" '返回 False。
a = "a2a" Like "a#a" '返回 True。
a = "aM5b" Like "a[L-P]#[!c-e]" '返回 True。
a = "BAT123khg" Like "B?T*" '返回 True。
a = "CAT123khg" Like "B?T*" '返回 False。
End Sub

运算符
版权声明

本文来自投稿,不代表本站立场,转载请注明出处。

分享:

扫一扫在手机阅读、分享本文