中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用ASP.NET怎么刪除數組中的重復值

發布時間:2020-12-23 16:45:07 來源:億速云 閱讀:173 作者:Leah 欄目:開發技術

利用ASP.NET怎么刪除數組中的重復值?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

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怎么刪除數組中的重復值

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

塘沽区| 和林格尔县| 徐州市| 信阳市| 仁寿县| 鸡东县| 昌宁县| 青冈县| 桑植县| 综艺| 江西省| 双桥区| 牟定县| 蛟河市| 安徽省| 阳江市| 潢川县| 武城县| 新宾| 阿克陶县| 阿荣旗| 疏勒县| 马龙县| 通山县| 四子王旗| 行唐县| 且末县| 平邑县| 巴彦淖尔市| 大厂| 义马市| 泾源县| 马鞍山市| 健康| 宣城市| 六枝特区| 通化县| 攀枝花市| 新竹县| 鸡西市| 民县|