public static void Main(string[] args)
        {         
            string strtmp = "123\"456\"qqq\"789\"777\"";
            string[] strTmps = strtmp.Split('"');
            for (int i = 0; i < strTmps.Length; i++)
            {
                if (strtmp.Length > 1)
                {
                    Console.WriteLine(strTmps[i] + "");
                }
                Console.ReadLine();
            }
        }

 

相关文章:

  • 2021-09-12
  • 2022-02-22
  • 2022-12-23
  • 2021-11-23
  • 2021-09-16
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2021-07-04
  • 2022-12-23
相关资源
相似解决方案