vote up 0 vote down star

I need some help with regex. i want to get the string which has a delimiter in it between two specific words.

e.g. i need a regex which matches:

Statements1 start Statements2 ; Statements3 end fun;

There can be multiple occurences of ' ; ' between 'start' and 'end'.

Statements are multiple words where (.*) can be used in the regex for a word.

But the regex should not match if there is no ' ; ' between the 'start' and 'end'.

Also, the 'end' should be the first 'end' encountered after 'start'

So, the regex should not match

Statements1 start Statements2 end Statements3 ; end fun

i want the matches as

  1. statements before 'start'
  2. keyword
  3. statements after 'start'

So, in this case it would be a group(for the 1st string since 2nd should not match) as:

  1. Statements1
  2. start
  3. Statements2 ; Statements3 end fun;

Thanks.

flag

4 Answers

vote up 1 vote down check

So the below regex will match your positive case and fail the negative case and place the results into group 1, 2, & 3.

(.*?) (start) ((?:(?:.*?) ;)+ (?:.*?) end fun)

In case you're unfamiliar with the (?:) syntax - they signify non-capturing parentheses. Check out Mastering Regular Expressions, it's a great reference for this topic!

link|flag
yes, i'm familier with the ?: syntax. But i'm sorry to say that this regex is not working. – Archana R Mar 16 at 4:22
vote up 0 vote down
start ((Statements) ;)+ (Statements) end fun
link|flag
This doesn't meet the capturing requirements – LFSR Consulting Mar 13 at 13:45
Yes, it does, the regex for were not asked... – leppie Mar 13 at 13:48
Ok, it does not, the original question has been altered... – leppie Mar 13 at 13:48
A pain when that happens isn't it! – LFSR Consulting Mar 13 at 13:50
vote up 0 vote down

Might be quicker to use

    string[] Strings = stringToSplit.Split(new char[] { ';' });
    if (Strings.Count() > 1)
    {
        // Do your stuff
    }
link|flag
thanks, but i want only regex. – Archana R Mar 13 at 13:20
vote up 0 vote down

It sounds like what you want is as simple as:

(.*)(start)(.*;.*end.*)

This would return the groups you list.

link|flag
You need non-greedy qualifiers on your *'s, or it will match the last "end", not the first. – Jesse Rusak Mar 13 at 13:31
You're absolutely correct, although substituting lazy *s causes it to group the final "fun;" with the next match. Not sure how much this matters. – P Daddy Mar 13 at 13:41

Your Answer

Get an OpenID
or

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