Is it possibel to combine Map.ContainsKey with EqualsIgnoreCase in order to check, if the key exists with another case or do I have to check each key himself in a loop?
B4X:
Dim exists As Boolean=False
For Each key As String In Map1.Keys
If key.EqualsIgnoreCase(Name)=True Then
exists=True
Exit
End If
Next
If exists Then Log("Exists")
Last edited: