string str = "HTML,Asp/Aspx,MySQL/Cgi/Java/Php,";
        str 
= str.Remove(str.LastIndexOf(","),1);
        Response.Write(str); 

string a = "1,3,5,";
        Response.Write(a.TrimEnd(
',')); 

相关文章:

  • 2021-09-08
  • 2021-06-11
  • 2022-12-23
猜你喜欢
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案