本文实例讲述了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=te