删除字符串里第一次出现的子串

作者:追风剑情 发布于:2014-5-15 11:03 分类:C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "111aa222aa333aa444aa555";

            string findStr = "aa";//删除找到的第一个aa
            int startIndex = s.IndexOf(findStr);
            if (-1 != startIndex)
            {
                s = s.Substring(0, startIndex) + s.Substring(startIndex + findStr.Length);
                Console.WriteLine(s);
            }

            Console.ReadKey();
        }
    }
}

 

运行效果

aa.png

 

 

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号