up vote 0 down vote favorite
share [g+] share [fb]

I need to parse a string, such as /a/b/c/d=uno/c=duo.html

into three groups, such as

  • /a/b/c/
  • d=uno/
  • c=duo.html

The parsing rules are:

  1. The first group is everything until "d=" or the whole string if "d=" is not a part of the string.
  2. The second group is everything until "c=" or the rest of the string following the first group if "c=" is not a part of the string.
  3. The third group matches the rest of the string following the second group.

My problem with the following regex (?.+/)?(?d=([^/]+)/)?(?c=(?.*)) is that I don't know how to stop the group when it encounters "d=".

Any help will be appreciated.

Thanks.

link|improve this question
Why on earth would you change the URL parsing mechansim? Can't you just accept the standard parsing method so you don't have to worry about something like this? Or is this homework? – cletus Jan 12 '09 at 3:24
feedback

3 Answers

Is the string you need to parse in the form you supplied, or is it an actual URL with parameters? If it's a URL, you can use System.Web.HttpUtility.ParseQueryString to extract a NameValueCollection containing each parameter and its value.

I've found this useful even in Windows Forms (eg parsing query parameters in ClickOnce deployed applications).

link|improve this answer
feedback
(.*?/)(?>d=|$)(.*?/)(?>c=|$)(.*?)$
link|improve this answer
feedback
(.*?)(?>d=|$)(.*?)(?>c=|$)(.*?)$

group1: Everything till d= or end of string

group2: Everything till c= or end of string

group3: Everything till end of string

link|improve this answer
feedback

Your Answer

 
or
required, but never shown