使用正则表达式分割字符串:

            string str = "5B5B5B5B0003220101935D5D5D5D5B5B5B5B0003220101935D5D5D5D";
            Regex reg = new Regex(@".{1,3}");
            MatchCollection mc = reg.Matches(str);
            foreach (Match m in mc)
            {
                Response.Write(m.ToString() + "</br>");
            }

相关文章:

  • 2022-01-05
  • 2022-12-23
  • 2021-10-27
  • 2021-10-13
  • 2021-10-18
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案