iT邦幫忙

DAY 24
3

看範例學C#系列 第 24

看範例學C#-24 剔除重複字串

  • 分享至 

  • xImage
  •  

剔除重複字串範例
本例是使用 Regex.Split 來以textbox1的斷行符號來做分割
Regex.Split 方法 請參考MSDN
然後把每一行的字串塞到陣列str裡面去
而陣列有一個Distinct方法,可以剔除重除字串
所以接著只要用foreach 把剩下的值填回去textBox1去就完成了
foreach (string strlist in str.Distinct())
{
textBox1.Text += strlist + "\r\n";
}
以下為本例完整程式碼

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Text.RegularExpressions;
namespace ex24
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            string[] str = Regex.Split(textBox1.Text, "\r\n");
            textBox1.Text = "";
            foreach (string strlist in str.Distinct())
            {
                textBox1.Text += strlist + "\r\n";
            }
        }
    }
}

全系列文章列表


上一篇
看範例學C#-23 MP3播放
下一篇
看範例學C#-25 ini檔讀寫範例
系列文
看範例學C#30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言