string str1 = "abc,def,ccc,ddd;qwe,rty;cccc;";
        
string[] str2 = str1.Split(';');
        
//Response.Write(str2.Length);
        
//Response.Write(str2[2].ToString());
        foreach (string s in str2)
        {
            
string[] singleStr = s.Split(',');
            Response.Write(singleStr[
0+ "<br />");
        }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2021-08-20
  • 2022-01-10
  • 2021-10-06
  • 2022-12-23
  • 2021-11-15
猜你喜欢
  • 2022-12-23
  • 2022-02-04
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案