URL正则替换

配置文件中的URL配置

<appSettings>
    <add key="rootURL" value="http://192.168.0.150:51898/"/>
  </appSettings>


正则替换的方法

public string changeURL(object url)
    {
      string oldURL = Convert.ToString(url);
      string rootAppURL = System.Configuration.ConfigurationManager.AppSettings["rootURL"];
      string newURL = System.Text.RegularExpressions.Regex.Replace(oldURL, "http:/+[^/]+/+", rootAppURL);
      return newURL;
    }



你可能感兴趣的:(URL正则替换)