#include-once Func _JSON_Find_Key($sKey, ByRef $jJSONInput, $nStart = 1, $bDebug = False) For $l = $nStart To UBound($jJSONInput) - 1 If $jJSONInput[$l][0] == $sKey Then Return($l) EndIf Next Return(Default) EndFunc