原文发布时间为: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();
}
}
}