vote up 2 vote down star

Using the .net framework, I'm trying to replace double slash characters in a string with a single slash, but it seems to be removing an extra character and I don't know why.

I have a string "http://localhost:4170/RCRSelfRegistration//Default.aspx" My regex is "[^(://|:\\)](\\|//|\/|/\)"

And the return value is "http://localhost:4170/RCRSelfRegistratio/Default.aspx". You can see that the n in RCRSelfRegistration has been removed. Not sure why.

/// <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;
}
flag

73% accept rate

6 Answers

vote up 4 vote down check

The first part of your regex "[^(://|:\\)]" matches any character which is not "(:/|\" (as tomalak points out, the negset matches all the characters within it, with no futher processing logic), which includes the "n" immediately before "//default.aspx" - it's not a zero-width assertion.

What you probably want to do is change that part of the pattern to a zero-width lookbehind to make sure the slash character is not preceded by a colon.

link|flag
I see what you are saying. I've simplified the string to "[^:](\\\\|//|\\/|/\\)" but can you tell me the syntax for a zero width lookbehind? – Jeremy Jan 27 at 17:46
It's all over the place now. =) – Instantsoup Jan 27 at 17:47
in your case - "(?<!:)" the "?<!" part meaning negative lookbehind – annakata Jan 27 at 17:50
In fact, "[^(://|:\\)]" matches anything but these characters: "(|:/\" - it is a character class, not an alternation, even if it looks like one. – Tomalak Jan 27 at 17:56
That did it! Thanks. – Jeremy Jan 27 at 17:57
show 3 more comments
vote up 0 vote down

I think you just need a simple string replace with a loop. Replace all "//" with "/". You need a function that saves the search position and lets you walk through the string. Once you've reached the end of the string do it again, until you don't make any replacements on a pass.

eg:

///a//a/a////

pass 1

//a/a/a//

pass 2

/a/a/a/

link|flag
this would be brutally slow, and this is the kind of task regex is meant for – annakata Jan 27 at 17:52
I'll shut up now, I read the question properly. Need more coffee. – justinhj Jan 27 at 18:12
vote up 2 vote down

What you need is a negative look behind group like this:

(?<!:)(\\\\|//|\\/|/\\)
link|flag
vote up 1 vote down

Have you tried using The replace method of string. It's not as elegant as regex replace but so long as you aren't doing it on huge strings hundreds of times in a loop it should serve your purpose:

string myString = oldString.Replace(@"\\", @"\").Replace("//", "/");

Otherwise you could spend aged fidlign with Regex.

link|flag
vote up 1 vote down

The negation part [^(://|:\\)] of your regex matches the n and thus removes it.

link|flag
vote up 5 vote down

[^(://|:\\\\)] doesn't work the way you think it does.

[] is a character range - it matches a single character that is contained in the range.

[^:] will match any character other than a colon. This might be closer to what you want.

What you probably really want is a zero-width lookbehind assertion: (?<!:)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.