string teststr="aa;bb;vv;dd";
   string[] teststr2=teststr.Split(';');
   for (int i = 0; i < teststr2.Length; i++)
   {

    Response.Write(teststr2[i]+"<br>");
   }

相关文章:

  • 2021-12-21
  • 2021-08-02
  • 2022-12-23
  • 2021-12-31
  • 2022-01-15
  • 2021-06-22
  • 2022-03-04
  • 2022-02-04
猜你喜欢
  • 2022-12-23
  • 2021-06-09
相关资源
相似解决方案