\'\'\'
Dim dict As new Dictionary(of String,Integer)
For Each r As Row In Tables("表A").Rows
For Each s As String In r("第一列").split("、")
If dict.ContainsKey(s) Then
dict(s) = dict(s) + 1
Else
dict.Add(s,1)
End If
Next
Next
For Each k As String In dict.Keys
Output.Show(k & "=" & dict(k))
Next