diff --git a/JsonPreprocessor/CJsonPreprocessor.py b/JsonPreprocessor/CJsonPreprocessor.py index 227760ce..4bc6efef 100644 --- a/JsonPreprocessor/CJsonPreprocessor.py +++ b/JsonPreprocessor/CJsonPreprocessor.py @@ -664,6 +664,18 @@ def __handleStrNoneTrueFalse(objJson): else: oJson[k] = v return oJson + + def __handleListElements(sInput : str) -> str: + items = re.split("\s*,\s*", sInput) + j=0 + newItem = "" + for item in items: + j+=1 + if j