using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace UBB翻译 { class Program { static void Main(string[] args) { string str = "听说这个论坛是[color=green]其他人[/color]做的.他是[url=http://www.badu.cn/]百度[/url]的"; string newStr= Regex.Replace(str,@"\[color=(.+)\](.+)\[/color\]", "$2"); string msg = Regex.Replace(newStr, @"\[url=(.+)\](.+)\[/url\]的", "$2的"); Console.WriteLine(msg); Console.ReadKey(); } } }
领取专属 10元无门槛券
手把手带您无忧上云