码迷,mamicode.com
首页 > 其他好文 > 详细

练习题 去除字符串中的某个给定字符串

时间:2017-07-12 10:26:56      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:das   express   read   i++   工具   using   har   .text   split   

原文发布时间为:2009-03-09 —— 来源于本人的百度文章 [由搬家工具导入]

using System;//去除“askdaskaskdaskg”中的所有ask字符
namespace unname
{
   public class Class1
    {
       public static void Main()
       {
           //注释部分为另一种做法
           //string str="askdaskaskdaskg";
           //string[] result = str.Split(new char[] { 'a', 's', 'k' });
           //for (int i = 0; i < result.Length; i++)
           //    Console.Write(result[i]);

           string str = "askdaskaskdaskg";
           str = System.Text.RegularExpressions.Regex.Replace(str, @"[ask]", "");
           Console.WriteLine(str);
           Console.ReadLine();
       }

   }
}

练习题 去除字符串中的某个给定字符串

标签:das   express   read   i++   工具   using   har   .text   split   

原文地址:http://www.cnblogs.com/handboy/p/7153298.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!