Exemple #1
0
        public static JSONObject FromString(string str)
        {
            JSONObject result = new JSONObject();

            str = str.Trim();
            if (str.IsStrStartEndByChar('{', '}') == true)
            {
                str = str.CutOffFirstAndLast();
                string[] objs = str.Split(',');
                if (objs.Length > 0)
                {
                    foreach (string index in objs)
                    {
                        string indexStr = index.Trim();
                        string key      = "";
                        Object value    = new object();
                        if (ClassFuncInjecter.TryParsePairFromStr(indexStr, out key, out value))
                        {
                            result.Add(key, value);
                        }
                    }
                }
            }
            return(result);
        }
Exemple #2
0
        public static JSONArray FromString(string str)
        {
            JSONArray result = new JSONArray();

            str = str.Trim();
            if (str.IsStrStartEndByChar('[', ']') == true)
            {
                str = str.CutOffFirstAndLast();
                string[] objs = str.Split(',');
                if (objs.Length > 0)
                {
                    foreach (string index in objs)
                    {
                        string indexStr = index.Trim();
                        Object obj      = new object();
                        if (ClassFuncInjecter.TryParseObjFromStr(indexStr, out obj))
                        {
                            result.Add(obj);
                        }
                    }
                }
            }
            return(result);
        }