----赖格英-----

记忆不好了,记录工作中的点点滴滴....

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            char[] delimiterChars = { ' ', ',', '.', ':', '\t' };
            string text = this.textBox1.Text;
            string[] words = text.Split(delimiterChars);
            foreach (String ss in words)
            {
                this.listBox1.Items.Add(ss);
            }
        }
    }
}

posted on 2014-01-12 20:26  向北方  阅读(419)  评论(0编辑  收藏  举报