| | |
| | | return string.Empty;
|
| | | }
|
| | |
|
| | | //一维数组:来源格式如 1|2|3|4
|
| | | public static T[] GetMultipleStr<T>(string msg) where T : struct
|
| | | {
|
| | | string[] segs = GetMultipleStr(msg);
|
| | |
| | | return msg.Split('_');
|
| | | }
|
| | |
|
| | | //一维数组:来源格式如 1_2|2_3|3_1|4_3;
|
| | | //返回一维数组结构如 1|2|3|4
|
| | | public static T[] GetKeyValueKeys<T>(string msg) where T : struct
|
| | | {
|
| | | string[] segs = GetMultipleStr(msg);
|
| | |
| | | return null;
|
| | | }
|
| | |
|
| | | //一维数组:来源格式如 1_2|2_3|3_1|4_3;
|
| | | //返回一维数组结构如 2|3|1|3
|
| | | public static T[] GetKeyValueValues<T>(string msg) where T : struct
|
| | | {
|
| | | string[] segs = GetMultipleStr(msg);
|
| | |
| | | return null;
|
| | | }
|
| | |
|
| | | //二维数组:来源格式如 1_2_1|2_3_4|3_1_2|4_3_4
|
| | | public static T[][] GetArray2<T>(string msg) where T : struct
|
| | | {
|
| | | string[] segs = GetMultipleStr(msg);
|
| | | if (segs != null && segs.Length > 0)
|
| | | {
|
| | | T[][] array = new T[segs.Length][];
|
| | | for (int i = 0; i < segs.Length; i++)
|
| | | {
|
| | | string[] pair = GetKeyValue(segs[i]);
|
| | | if (pair.Length > 1)
|
| | | {
|
| | | array[i] = new T[pair.Length];
|
| | | for (int j = 0; j < pair.Length; j++)
|
| | | {
|
| | | array[i][j] = (T)Convert.ChangeType(pair[j], typeof(T));
|
| | | }
|
| | | }
|
| | | }
|
| | | return array;
|
| | | }
|
| | | return null;
|
| | | }
|
| | |
|
| | | //字典:来源格式如 1_2|2_3|3_1|4_3;
|
| | | public static Dictionary<T, P> GetDic<T, P>(string msg)
|
| | | {
|
| | | Dictionary<T, P> dic = null;
|
| | |
| | | }
|
| | |
|
| | | //{'17':['63','6','27'],'65':['800'],'55':['139'],'19':['1000','2600','130']}
|
| | | public static Regex userDataRegex = new Regex(@"'([0-9]+)':\[(.*?)\]", RegexOptions.Singleline);
|
| | | public static Dictionary<int, List<int>> Analysis(string val)//正则表达式的字符串分割
|
| | | {
|
| | | string s = ServerStringTrim(val);
|
| | |
| | | //}
|
| | | }
|
| | |
|
| | | public static Dictionary<int, List<int>> ParseJsonDict(string jsonStr)
|
| | | {
|
| | | if (jsonStr == "{}" || string.IsNullOrEmpty(jsonStr))
|
| | | {
|
| | | return new Dictionary<int, List<int>>();
|
| | | }
|
| | | var dict = JsonMapper.ToObject<Dictionary<string, List<int>>>(jsonStr);
|
| | | Dictionary<int, List<int>> result = new Dictionary<int, List<int>>();
|
| | |
|
| | | foreach (var item in dict)
|
| | | {
|
| | | result[int.Parse(item.Key)] = item.Value;
|
| | | }
|
| | |
|
| | | return result;
|
| | | }
|
| | |
|
| | | //json格式: {"1":1}
|
| | | public static Dictionary<int, int> ParseIntDict(string jsonStr)
|
| | | {
|
| | | if (jsonStr == "{}" || string.IsNullOrEmpty(jsonStr))
|
| | |
| | | return result;
|
| | | }
|
| | |
|
| | | //json格式: {"1":[1,2],"2":[3,4]}
|
| | | public static Dictionary<int, int[]> ParseIntArrayDict(string jsonStr)
|
| | | {
|
| | | if (jsonStr == "{}" || string.IsNullOrEmpty(jsonStr))
|
| | |
| | | return result;
|
| | | }
|
| | |
|
| | | //json格式: {"1":[[1,2],[3,4]]}
|
| | | public static Dictionary<int, int[][]> ParseIntArray2Dict(string jsonStr)
|
| | | {
|
| | | if (jsonStr == "{}" || string.IsNullOrEmpty(jsonStr))
|