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

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

  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6.  
  7. namespace ConsoleApplication1
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string s = "111aa222aa333aa444aa555";
  14.  
  15. string findStr = "aa";//删除找到的第一个aa
  16. int startIndex = s.IndexOf(findStr);
  17. if (-1 != startIndex)
  18. {
  19. s = s.Substring(0, startIndex) + s.Substring(startIndex + findStr.Length);
  20. Console.WriteLine(s);
  21. }
  22.  
  23. Console.ReadKey();
  24. }
  25. }
  26. }

 

运行效果

aa.png

 

 

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号