• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

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

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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

1.前台代码:

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
  <title>数组删除重复值</title> 
</head> 
<body> 
  <form id="form1" runat="server"> 
  <div> 
    数组删除前: 
    <asp:Label ID="lblResult1" runat="server"></asp:Label> 
    <br /> 
    数组删除后: 
    <asp:Label ID="lblResult2" runat="server"></asp:Label> 
  </div> 
  </form> 
</body> 
</html>

2.后台代码:

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Collections; //引用 
   
public partial class NetObjects_数组_删除重复值 : System.Web.UI.Page 
{ 
  protected void Page_Load(object sender, EventArgs e) 
  { 
    string strNum = "168,145,150,148,333,888,666,168,144"; 
    //输出原数组 
    lblResult1.Text = strNum; 
    string[] arrNum = strNum.Split(','); 
    ArrayList al = new ArrayList(); 
    for (int i = 0; i < arrNum.Length; i++) 
    { 
      //判断数组值是否已经存在 
      if (al.Contains(arrNum[i]) == false) 
      { 
        al.Add(arrNum[i]); 
      } 
    } 
    //把ArrayList转换数组 
    arrNum = new string[al.Count]; 
    arrNum = (string[])al.ToArray(typeof(string)); 
    //输出删除后数组 
    string result = ""; 
    for (int j = 0; j < arrNum.Length; j++) 
    { 
      if (j != 0) 
      { 
        result += ","; 
      } 
      result += arrNum[j]; 
    } 
    lblResult2.Text = result; 
  } 
}

3.最终输出效果:

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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
GridView控件如何显示序号发布时间:2022-02-05
下一篇:
ASP.NET中readonly与const的区别详解发布时间:2022-02-05
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap