這篇文章主要介紹了JS和C#實現的兩個正則替換功能,結合具體實例形式分析了js與C#進行字符串正則替換的相關實現方法與注意事項,需要的朋友可以參考下
本文實例講述了JS和C#實現的兩個正規替換功能。分享給大家供大家參考,具體如下:
應用實例1:
#待處理字串:str="display=test name=mu display=temp"
要求:display=後面的值都改成localhost
JS處理方法:
str.replace(/display=\w*/g,"display=localhost");
C#處理方法:
Regex reg=new Regex(@"display=\w*"); str=reg.Replace(str,"display=localhost");
應用實例2:
#待處理字串:str="display=test name=mu display=temp"
要求:字串變成display=localhosttest name=mu display=localhosttemp
##JS處理方法:
#
var reg = /(display=)(\w*)/g; var result; while ((result= reg.exec(str))!=null) { str= str.replace(result[0], result[1] + "localhost" + result[2]); }C#處理方法:
/// <summary> /// 定义处理方法 /// </summary> /// <param name="match">符合的字符串</param> /// <returns></returns> private string Evaluator(Match match) { //(display=)(\w*) Groups按查找到的字符串再根据分组进行分组 //第0组为整个符合的字符串,后面的组按括号顺序排 string str =match.Groups[1].Value+"localhost"+ match.Groups[2].Value; return str; } Regex regex = new Regex(@"(display=)(\w*)"); string result = regex.Replace(str, Evaluator);
最後還有一個關於js的正規的小總結:
字串match和正規物件
exec的區別
以上是分享JS和C#實現的兩個正規取代功能實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!