1

I have

string text = "aa aa value kk 8718764 aa value1 kk kk kk 5178gkjh aathtkhkk";

I want to get all texts between aa and kk and the expected results are:

1 = value
2 = value1
3 = thtkh

I try using a "aa(.*?)kk" regex, but I am not getting the expected result.

Uwe Keim
  • 39,551
  • 56
  • 175
  • 291

1 Answers1

2

The .*? will still match aa in between aa and kk.

Use a tempered greedy token:

aa((?:(?!aa).)*?)kk
   ^^^^^^^^^^^^^

or

aa((?:(?!aa|kk).)*)kk
   ^^^^^^^^^^^^^^^

See the regex demo

Details:

  • aa - an aa substring
  • ((?:(?!aa).)*?) - Group 1 capturing any zero or more chars (if RegexOptions.Singleline option used, even including newline) that are not starting an aa substring sequence, as few as possible
  • kk - a kk substring

enter image description here

C# code:

var re = @"aa((?:(?!aa).)*?)kk";
var str = "aa aa value kk 8718764 aa value1 kk kk kk 5178gkjh aathtkhkk"; 
var res = Regex.Matches(str, re)
    .Cast<Match>()
    .Select(p => p.Groups[1].Value)
    .ToList();
Community
  • 1
  • 1
Wiktor Stribiżew
  • 607,720
  • 39
  • 448
  • 563