- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将位于字符串数组中的字符串类型的键传递给返回假阴性的 scripting.dictionary.exists(key) 方法。我希望它正确返回一个正 bool 值,以便我可以确定 key 是否对每个业务流程有效。有效值存储在字典中。
我已经检查以确保字典的比较模式是 TextCompare 这无关紧要,因为事实证明字典和数组中字符串的大小写是相同的。我还确保变量类型都是字符串 (8)。此外,我确保字符串数组和字典中的字符串是相同的。最后,我检查以确保如果将字符串直接输入参数而不是通过数组通过引用传递给参数,该方法也会返回误报。
Function fvalidatedata(saInput() As String) As String()
Dim dInvalidRecords As Scripting.Dictionary, _
dValidDisputeStatuses As Scripting.Dictionary, dDisputeStatusErrorMap As Scripting.Dictionary, _
dValidReasonCodes As Scripting.Dictionary, dReasonCodeAbbrevMap As Scripting.Dictionary, _
saListBoxValues() As String, i As Long, ii As Long, frmIRC As New ufInvalidReasonCode
Set dInvalidRecords = New Scripting.Dictionary
Set dValidDisputeStatuses = New Scripting.Dictionary
Set dDisputeStatusErrorMap = New Scripting.Dictionary
Set dValidReasonCodes = New Scripting.Dictionary
Set dReasonCodeAbbrevMap = New Scripting.Dictionary
dInvalidRecords.CompareMode = BinaryCompare
dValidDisputeStatuses.CompareMode = TextCompare
dDisputeStatusErrorMap.CompareMode = TextCompare
dValidReasonCodes.CompareMode = BinaryCompare
dReasonCodeAbbrevMap.CompareMode = BinaryCompare
Set dValidDisputeStatuses = fValidDisputeStatusMap
Set dDisputeStatusErrorMap = fDisputeStatusErrorMap
Set dValidReasonCodes = fValidReasonCodes
Set dReasonCodeAbbrevMap = fReasonCodeAbbrevMap
For i = 2 To UBound(saInput, 1)
'Dispute Status Validation
If Not dValidDisputeStatuses.Exists(saInput(i, 12)) Then
Debug.Print dValidDisputeStatuses.Exists(saInput(i, 12))
If dDisputeStatusErrorMap.Exists(saInput(i, 12)) Then
saInput(i, 12) = dDisputeStatusErrorMap(saInput(i, 12))
Else
ReDim saListBoxValues(0 To dValidDisputeStatuses.Count - 1)
For ii = 0 To dValidDisputeStatuses.Count - 1
saListBoxValues(ii) = dValidDisputeStatuses.Keys(ii)
Next ii
frmIRC.ListBox1.List = saListBoxValues
frmIRC.l1 = "Please select valid dispute status from the list below for record " & saInput(i, 3) & " and submit once complete."
frmIRC.Show vbModeless
End If
End If
'Reason Code Validation
Next i
End Function
Function fValidDisputeStatusMap() As Scripting.Dictionary
Dim dMap As Scripting.Dictionary, lo As ListObject, i As Long
Set dMap = New Scripting.Dictionary
dMap.CompareMode = TextCompare
Set lo = Application.Workbooks("RnR_Dispute_Process_Workbook.xlsx").Sheets("Update Dictionary").ListObjects("Valid_Statuses")
For i = 1 To lo.ListColumns("Valid Statuses").DataBodyRange.Count
If Not dMap.Exists(lo.ListColumns("Valid Statuses").DataBodyRange(i)) Then
dMap.Add lo.ListColumns("Valid Statuses").DataBodyRange(i), vbNullString
End If
Next i
Set fValidDisputeStatusMap = dMap
Set dMap = Nothing
End Function
最佳答案
I am passing a key of type string
Range
对象在这里:
If Not dMap.Exists(lo.ListColumns("Valid Statuses").DataBodyRange(i))
大多数情况下(例如,在分配给 Range 时)恰好是
Range
对象将返回其默认属性(
Cells
),该属性返回其默认属性(
Value
),但是在获取范围时,这并不那么可靠。
Keys
在字典中可以是除数组之外的任何东西,正如您无意中观察到的,当您将复杂对象用作
Keys
时,可能会出现奇怪的事情。 .
A
Dictionary
object is the equivalent of a PERL associative array. Items, which can be any form of data, are stored in the array. Each item is associated with a unique key. The key is used to retrieve an individual item and is usually an integer or a string, but can be anything except an array.
Range
对象,它被赋予了不同的内存位置。您可以很容易地验证这一点:
Dim i as Long
Dim r as Range
For i = 1 to 3
Set r = Range("A1")
Debug.Print(ObjPtr(r))
Next
在您的情况下,这意味着
Exists
方法显然会失败(即,返回
False
当它似乎应该返回
True
时),例如,扩展上述内容:
Dim i As Long
Dim r As Range
Dim d as Object
Set d = CreateObject("Scripting.Dictionary")
For i = 1 to 3
Set r = Range("A1")
d.Add r, i
Next
这将产生一个具有 3 个唯一键的字典,它们都是指向同一个
Range
的指针目的!
Set
分配在循环之外,它将在第二次迭代中按预期失败,因为它现在正试图添加一个已经存在于字典中的指针。
Set r = Range("A1")
For i = 1 to 3
d.Add r, i
Next
这个故事的寓意是:在分配
Object
时要小心。类型为
Keys
在
Dictionary
.
Object
类型为
Dictionary.Keys
?
Dictionary.Exists
.
Sub foo2()
Dim d As Dictionary
Dim r As Range, w As Worksheet
Dim i As Long
Dim keys(1 To 3) As Range
Set d = CreateObject("Scripting.Dictionary")
Set r = Range("A1:A3")
' Create our keys in one place
For i = 1 To r.Cells.Count
Set keys(i) = r.Cells(i)
Next
' Iterate the KEYS rather than the range
For i = LBound(keys) To UBound(keys)
d.Add keys(i), i
Next
Debug.Print "The dictionary initially contains " & d.Count & " keys."
'If we test Exist against our keys array, results are as expected:
For i = LBound(keys) To UBound(keys)
If Not d.Exists(keys(i)) Then
d.Add r.Cells(i), i
End If
Next
Debug.Print "The dictionary still contains " & d.Count & " keys."
' Iterate the RANGE now and no error occurs!
For i = 1 To r.Cells.Count
If Not d.Exists(r.Cells(i)) Then
d.Add r.Cells(i), i
End If
Next
' But, our dictionary now has 6 keys, instead of 3!!!
Debug.Print "The dictionary now contains " & d.Count & " keys!"
End Sub
关于excel - VBA Dictionary.Exists 方法从字符串数组返回假负给定字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56549350/
我有一个非常基本的 MySQL 查询,它从数据库表中读取行并将行值添加或减去定义为 $total_balance 的 PHP 字符串。 例如; $statement_details_query = m
我有 following fiddle ,请注意,如果您使输出的宽度变小,图像将被覆盖并且不会出现滚动条 - 完美。 如果我attempt the same effect on the right ,
这个正则表达式将得到 456。我的问题是为什么它不能是 1-234-56 中的 234 ? 56 是否限定 (?!\d)) 模式,因为它不是单个数字。 (?!\d)) 寻找的起始点在哪里? impor
我需要知道两个子结构之间的内存距离 (&my_type.a - &my_tape.b.c) 结果的类型是什么?我需要将它转换为 (signed int),所以显然它是别的东西。 最佳答案 根据 C11
我遇到了一个扩展异常的异常处理程序类,如下所示: public class AppFileReaderException extends Exception { //Explicit seri
如何可视化负 RGB 值? 根据 OpenCV 文档: CV_8S - 8 位有符号整数 (-128..127) 这是否意味着 -128 表示 0 而 127 表示 255? 如果是,那我们为什么需要
我这里有一段代码给我带来了麻烦: idIndex = panoBuffer.indexOf("\"photo_id\":"); System.out.println(idIndex);
我刚刚练习 Java,对此还很陌生。我只是想创建一个随机数生成器程序来跟踪玩家的获胜、失败、获胜百分比和总获胜金额。该程序的逻辑是,玩家每次 session 有 3 次机会,计算机会生成一个随机数,玩
因此,我们被要求创建一个程序,使用户能够从 1-6 个有关矩阵运算的选项中进行选择。在每个用户的输入中,我们需要检查该输入是否适合要完成的操作(程序应该接受整数或 float ,正数或负数)。如果不满
这是我期望的输出 x |x| 1.2 1.2 -2.3 2.3 3.4 3.4 但我一直收到这个: x |x| 1
假设我有这个: $date1=date_create(date('H:I', strtotime('8:00'))); $date2=date_create(date('H:I', strtotime
如何确定负 FixNum 的无符号解释? # unexpected, true (~0b01111011).to_s(2) == ("-" + (~0b01111011).abs.to_s(2)) #
这是一个用于“邀请您的 friend 加入此群组”脚本的快速 SQL 查询。 我有 2 个表:users 和 group_members。我正在尝试执行一个查询,选择我所有的 friend ——由第一
负 ASCII 值有什么意义? int a = '«'; //a = -85 but as in ASCII table '<<' should be 174 最佳答案 没有负数ASCII值。 ASC
我知道用 PHP 可以做到这一点,但是有没有办法只用 MySQL 来做到这一点? 我有这个数据库: --------------------------------------------------
我在变量中有一个时间戳 $data = (float) -2208988800; 是否可以根据这些数据创建正确的日期?date("d.M.Y", $data) 返回“07.02.2036” 最佳答案
你好我如何将括号格式的负值转换为 double 值。目前我有这个。 Payment.Text = Calc_Payment().ToString("#,##0.00;(#,##0.00)"); 将支付
这是一个小程序。这应该打印 0 或 1,还是它有未定义的行为? #include struct S0 { unsigned f1 : 1; }; struct S0 s; int main (v
运行 lgb.cv 时,我有时会从日志中看到“从分数开始训练”后的负数。想知道这个数字到底是什么意思,单位是什么?是根据参数中指定的指标吗?以下是摘录: [LightGBM] [Info] Total
我正在使用变分自动编码器类型模型,我的损失函数的一部分是均值为 0 和方差为 1 的正态分布与另一个均值和方差由我的模型预测的正态分布之间的 KL 散度。 我用以下方式定义了损失: def kl_lo
我是一名优秀的程序员,十分优秀!