C# 字符串截取与Insert,在线等待
28 34 2C 0F F0 00 07 78 80 02 2C C7 70 02 2C
如上
string comtent=“28342C0FF000077880022CC770022C”;
将content转换为:comtent=“28 34 2C 0F F0 00 07 78 80 02 2C C7 70 02 2C”;
可以用Insert
也可以循环
------解决方案--------------------string str = "28342C0FF000077880022CC770022C";
str = Regex.Replace(str, @"(?is)(?<=^([0-9a-f]{2})+)(?!$)", " ");
------解决方案--------------------不自己写写看?
大概属于入门第二天的难度。