使用.NET框架,我試圖用單斜槓替換字符串中的雙斜線字符,但它似乎是刪除一個額外的字符,我不知道爲什麼。正則表達式替換幫助
我有一個字符串:
http://localhost:4170/RCRSelfRegistration//Default.aspx
我的正則表達式是:
[^(://|:\\\\)](\\\\|//|\\/|/\\)
,返回值是:
http://localhost:4170/RCRSelfRegistratio/Default.aspx
你可以看到,在RCRSelfRegistration n個已除去。我不知道爲什麼。
/// <summary>
/// Match on double slashes (//, \\, /\, \/) but do not match :// or :\\
/// </summary>
private const string strMATCH = @"[^(://|:\\\\)](\\\\|//|\\/|/\\)";
/// <summary>
/// Replace double slashes with single slash
/// </summary>
/// <param name="strUrl"></param>
/// <returns></returns>
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;
}
我明白你的意思了。我已將字符串簡化爲「[^:](\\\\ | | // | \\/|/\\)」,但您能告訴我零寬度後視的語法嗎? – Jeremy 2009-01-27 17:46:22
現在遍佈各地。 =) – Instantsoup 2009-01-27 17:47:53