当前位置:  开发笔记 > 编程语言 > 正文

正则表达式替换帮助

如何解决《正则表达式替换帮助》经验,为你挑选了1个好方法。

使用.NET框架,我试图用一个斜杠替换字符串中的双斜杠字符,但它似乎删除了一个额外的字符,我不知道为什么.

我有一个字符串:

http://localhost:4170/RCRSelfRegistration//Default.aspx

我的正则表达式是:

[^(://|:\\\\)](\\\\|//|\\/|/\\)

而返回值是:

http://localhost:4170/RCRSelfRegistratio/Default.aspx

您可以看到RCRSelfRegistration中的n已被删除.我不知道为什么.

/// 
/// Match on double slashes (//, \\, /\, \/) but do not match :// or :\\
/// 
private const string strMATCH = @"[^(://|:\\\\)](\\\\|//|\\/|/\\)";

/// 
/// Replace double slashes with single slash
/// 
/// 
/// 
public static string GetUrl(string strUrl)
{
    string strNewUrl
    System.Text.RegularExpressions.Regex rxReplace =
      new System.Text.RegularExpressions.Regex(strMATCH);

    strNewUrl = rxReplace.Replace(strUrl, "/");

    return strNewUrl;
}

Douglas Leed.. 5

[^(://|:\\\\)] 不像你想象的那样工作.

[] 是一个字符范围 - 它匹配范围中包含的单个字符.

[^:]将匹配冒号以外的任何字符.这可能更接近你想要的.

你可能真正想要的是一个零宽度的lookbehind断言:(?



1> Douglas Leed..:

[^(://|:\\\\)] 不像你想象的那样工作.

[] 是一个字符范围 - 它匹配范围中包含的单个字符.

[^:]将匹配冒号以外的任何字符.这可能更接近你想要的.

你可能真正想要的是一个零宽度的lookbehind断言:(?

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有