首页 > 编程 > .NET > 正文

ASP.NET数组删除重复值实现代码

2024-07-10 13:29:27
字体:
来源:转载
供稿:网友

在ASP.NET编程中,要想删除数组的重复值可以使用多种方法代码实现相同的效果。今天,在某个博客中看到某功能代码中的一小段代码很不错,它就是用来移动数组中相同值的方法,分享给大家

根据这段代码,自己编写了一个小程序作为代码资料参考,方便以后可以直接拿来用,不需要网上找。如果你觉得还不错的话,就把它收藏起来吧!

1.前台代码:

 

 
  1. <html xmlns="http://www.w3.org/1999/xhtml">  
  2. <head runat="server">  
  3. <title>数组删除重复值</title>  
  4. </head>  
  5. <body>  
  6. <form id="form1" runat="server">  
  7. <div>  
  8. 数组删除前:  
  9. <asp:Label ID="lblResult1" runat="server"></asp:Label>  
  10. <br />  
  11. 数组删除后:  
  12. <asp:Label ID="lblResult2" runat="server"></asp:Label>  
  13. </div>  
  14. </form>  
  15. </body>  
  16. </html> 

2.后台代码:

 

 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Web;  
  5. using System.Web.UI;  
  6. using System.Web.UI.WebControls;  
  7. using System.Collections; //引用  
  8.  
  9. public partial class NetObjects_数组_删除重复值 : System.Web.UI.Page  
  10. {  
  11. protected void Page_Load(object sender, EventArgs e)  
  12. {  
  13. string strNum = "168,145,150,148,333,888,666,168,144";  
  14. //输出原数组  
  15. lblResult1.Text = strNum;  
  16. string[] arrNum = strNum.Split(',');  
  17. ArrayList al = new ArrayList();  
  18. for (int i = 0; i < arrNum.Length; i++)  
  19. {  
  20. //判断数组值是否已经存在  
  21. if (al.Contains(arrNum[i]) == false)  
  22. {  
  23. al.Add(arrNum[i]);  
  24. }  
  25. }  
  26. //把ArrayList转换数组  
  27. arrNum = new string[al.Count];  
  28. arrNum = (string[])al.ToArray(typeof(string));  
  29. //输出删除后数组  
  30. string result = "";  
  31. for (int j = 0; j < arrNum.Length; j++)  
  32. {  
  33. if (j != 0)  
  34. {  
  35. result += ",";  
  36. }  
  37. result += arrNum[j];  
  38. }  
  39. lblResult2.Text = result;  
  40. }  

3.最终输出效果:

ASP.NET数组删除重复值实现代码

以上就是关于ASP.NET数组删除重复值的实现方法,希望对大家的学习有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表