溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

利用ASP.NET怎么刪除數(shù)組中的重復(fù)值

發(fā)布時(shí)間:2020-12-23 16:45:07 來(lái)源:億速云 閱讀:173 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

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

1.前臺(tái)代碼:

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
  <title>數(shù)組刪除重復(fù)值</title> 
</head> 
<body> 
  <form id="form1" runat="server"> 
  <div> 
    數(shù)組刪除前: 
    <asp:Label ID="lblResult1" runat="server"></asp:Label> 
    <br /> 
    數(shù)組刪除后: 
    <asp:Label ID="lblResult2" runat="server"></asp:Label> 
  </div> 
  </form> 
</body> 
</html>

2.后臺(tái)代碼:

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_數(shù)組_刪除重復(fù)值 : System.Web.UI.Page 
{ 
  protected void Page_Load(object sender, EventArgs e) 
  { 
    string strNum = "168,145,150,148,333,888,666,168,144"; 
    //輸出原數(shù)組 
    lblResult1.Text = strNum; 
    string[] arrNum = strNum.Split(','); 
    ArrayList al = new ArrayList(); 
    for (int i = 0; i < arrNum.Length; i++) 
    { 
      //判斷數(shù)組值是否已經(jīng)存在 
      if (al.Contains(arrNum[i]) == false) 
      { 
        al.Add(arrNum[i]); 
      } 
    } 
    //把ArrayList轉(zhuǎn)換數(shù)組 
    arrNum = new string[al.Count]; 
    arrNum = (string[])al.ToArray(typeof(string)); 
    //輸出刪除后數(shù)組 
    string result = ""; 
    for (int j = 0; j < arrNum.Length; j++) 
    { 
      if (j != 0) 
      { 
        result += ","; 
      } 
      result += arrNum[j]; 
    } 
    lblResult2.Text = result; 
  } 
}

3.最終輸出效果:

利用ASP.NET怎么刪除數(shù)組中的重復(fù)值

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI