using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
string str = " /* --------------------- hello-hi ----------------------- */ ";
Regex r = new Regex("/\\* -{2,}");
if (r.IsMatch(str))
str = r.Replace(str, "");
r = new Regex("-{2,} \\*/");
if (r.IsMatch(str))
str = r.Replace(str, "");
Console.WriteLine(str.Trim());
}
}
}
C#正则表达式范例replace
最新推荐文章于 2024-10-17 11:21:59 发布