C# 遍历文本框

2021-02-15 22:17

阅读:555

标签:post   blog   object   文本框   insert   pre   event   show   回车符   

#region 文本框指定位置加入回车符
        private void button1_Click(object sender, EventArgs e)
        {
            #region 
            //  查询首字母位置
            //string str = "ab0ab0ab0ab0";
            //int one = str.IndexOf("0"); //返回0出现的位置【索引】

            //for (int i=0;i//{
            //    one = str.IndexOf("0", ++one); //第二次出现的位置
            //    if (one==-1)
            //    {
            //        break;//未找到
            //    }
            //    MessageBox.Show(one.ToString());
            //}
            #endregion

            string str = textBox1.Text.Trim();
            int one = str.IndexOf(""); //返回0出现的位置【索引】
            str = str.Insert(one + 9, "\r\n");
            for (int i = 0; i )
            {
                one = str.IndexOf("", ++one); //第二次出现的位置                
                if (one == -1)
                {
                    break;//未找到
                }
                else
                {
                    str = str.Insert(one + 9, "\r\n");
                }
            }
            textBox1.Text = str;
        }
        #endregion
        #region list转string  去除text指定行
        Liststring> list = new Liststring>();
        private void button2_Click(object sender, EventArgs e)
        {
            list.Clear();
            //
            foreach (string line in textBox1.Lines)
            {
                if (!line.Contains("select"))
                {
                    list.Add(line);
                }
            }
            textBox1.Text= string.Join("\r\n", list.ToArray());
        }
        #endregion

 

C# 遍历文本框

标签:post   blog   object   文本框   insert   pre   event   show   回车符   

原文地址:https://www.cnblogs.com/enych/p/8425674.html


评论


亲,登录后才可以留言!