'Demo area---------------->
If ChangeValue
(MyDictionary
, "a", "Ananas") Then Print "added new couple key value" If ChangeValue
(MyDictionary
, "b", "Banana") Then Print "added new couple key value" If ChangeValue
(MyDictionary
, "c", "cherry") Then Print "added new couple key value" If ChangeValue
(MyDictionary
, "d", "Drake") Then Print "added new couple key value" If ChangeValue
(MyDictionary
, "e", "Elm") Then Print "added new couple key value" If ChangeValue
(MyDictionary
, "f", "Fire") Then Print "added new couple key value" Print LenDict
(MyDictionary
) Print "to key e there is "; GetDict$
(MyDictionary
, "e") Print "to key e there is "; GetDict$
(MyDictionary
, "a") If ChangeValue
(MyDictionary
, "e", "Elephant") Then Print " changed value of key passed" Print "to key e there is "; GetDict$
(MyDictionary
, "e") If Not (EraseKeyValue
(MyDictionary
, "e")) Then Print " Failed to erase key value passed" Else Print "Erased key value passed" If GetDict$
(MyDictionary
, "e") = "" Then Print " No couple key value found for key value 'e'" If ChangeKey
(MyDictionary
, "e", "f") = 0 Then Print "key -a- has value "; GetDict$
(MyDictionary
, "a") Print "we change key a to key e " If ChangeKey
(MyDictionary
, "a", "e") = -1 Then Print "key -a- has value "; GetDict$
(MyDictionary
, "a") Print "key -e- has value "; GetDict$
(MyDictionary
, "e") If InsertCouple
(MyDictionary
, "c", "m", "mellon") = -1 Then Print " New couple inserted after key -c- "; GetDict$
(MyDictionary
, "c") Print " new couple is key -m- "; GetDict$
(MyDictionary
, "m") Print LenDict
(MyDictionary
) ' End demo area --------------->
' it returns value/s for a key
StartK
= InStr(dict
, Skey
+ Keys
+ SValue
) StartV
= InStr(StartK
, dict
, SValue
) EndV
= InStr(StartV
, dict
, EValue
) If StartK
= 0 Then GetDict$
= "" Else GetDict
= Mid$(dict
, StartV
+ 1, EndV
- StartV
)
' it changes value of a key or append the couple key, newvalue if key is new
ChangeValue = 0
StartK
= InStr(dict
, Skey
+ Keys
+ SValue
) StartV
= InStr(StartK
, dict
, SValue
) EndV
= InStr(StartV
, dict
, EValue
) dict = dict + Skey + Keys + SValue + NewValue + EValue
dict
= Left$(dict
, StartV
) + NewValue
+ Right$(dict
, Len(dict
) - EndV
+ 1) ChangeValue = -1
'it changes a key if it is in the dictionary
ChangeKey = 0
StartK
= InStr(dict
, Skey
+ Keys
+ SValue
) StartV
= InStr(StartK
, dict
, SValue
) Print "Key " + Keys
+ " not found" dict
= Left$(dict
, StartK
) + NewKey
+ Right$(dict
, Len(dict
) - StartV
+ 1) ChangeKey = -1
'it erases the couple key value
EraseKeyValue = 0
StartK
= InStr(dict
, Skey
+ keys
+ SValue
) StartV
= InStr(StartK
, dict
, SValue
) EndV
= InStr(StartV
, dict
, EValue
) EraseKeyValue = -1
'it inserts a couple after a defined key, if key is not in dictionary it append couple key value
InsertCouple = 0
StartK
= InStr(dict
, Skey
+ SKeys
+ SValue
) StartV
= InStr(StartK
, dict
, SValue
) EndV
= InStr(StartV
, dict
, EValue
) dict = dict + Skey + Keys + SValue + Value + EValue
dict
= Left$(dict
, EndV
) + Skey
+ Keys
+ SValue
+ Value
+ EValue
+ Right$(dict
, Len(dict
) - EndV
+ 1) InsertCouple = -1
LenDict = 0
a
= InStr(a
+ 1, dict
, EValue
) LenDict = count