- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用的好处是什么(如果有的话)
If StrComp(strVal1, strVal2, vbTextCompare) = 0 Then
而不是使用
If strVal1 = strVal2 Then
如果在模块级别设置Option Compare Text
,有什么区别吗?
我知道 StrComp 处理 null 场景和 <> 场景,我只对 strVal1 和 strVal2 分配了非空有效字符串的情况感兴趣。
最佳答案
If
Option Compare Text
is set at the module level, is there any difference?
没有。它只是提供更细粒度的控制(没有模块级策略 promise )。但是,如果您可以做出这样的 promise ,请选择x = y
选项:更少的代码总是更好的代码。
关于excel - VB/VBA StrComp 或 =,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/756118/
StrComp 函数 返回一个表明字符串比较结果的值。 StrComp(string1, string2[, compare]) 参数 string1 必选项。任意有效的字符串表达式。
我在使用 StrComp 时遇到问题VBA 中用于比较两个字符串的函数。 Public Function upStrEQ(ByVal ps1 As String, ByVal ps2 As Strin
使用的好处是什么(如果有的话) If StrComp(strVal1, strVal2, vbTextCompare) = 0 Then 而不是使用 If strVal1 = strVal2 Then
目标 按字典顺序比较两个字符串,忽略大小写。 使用 StrComp 的可能解决方案 考虑以下脚本: val1 = "test9999" val2 = "TEST_59895" LexCompare v
在我下面的代码中,我设置了一个 ReadString,它读取用户输入并在 exec.Command 中传递它。 这很好用,但是当我尝试将字符串与 vbscript 中的硬编码字符串进行比较时(在本例中
返回错误的代码是以下内容的第一行: While StrComp(selectedRecipe, dataSheet.Cells(i, 1)) <> 0 recipeR
我是一名优秀的程序员,十分优秀!