把#define宏转换成指定格式
之前在弄一个东西的,有一大堆的宏,需要把它转换成其它的形式。遇到这种大批量的东西,我特别没有耐心去一个一个的弄,于是写了一段代码。
估计大家平常比较难用得上,不过可以平常相似的情况用来参考。
SortedDictionary<int, string> enumMap = new SortedDictionary<int, string>(); string fileName = "tmp.txt"; File.WriteAllText(fileName, tbSource.Text, Encoding.Default); string[] items = File.ReadAllLines(fileName, Encoding.Default); Regex reg = new Regex(@"#define\s+(\S+)\s+(\d+)"); foreach(string item in items) { Match match = reg.Match(item); string value = match.Groups[1].Value; int key = Convert.ToInt32(match.Groups[2].Value); if(enumMap.ContainsKey(key)) { Debug.WriteLine(item); Debug.Assert(false); } else { enumMap.Add(key, value); } } string result = ""; foreach(var item in enumMap) { result += string.Format("{0} = {1},\n", item.Value, item.Key); } tbTarget.Text = result;
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步