show/hide this revision's text 3 add groups

A possible solution could be to use a positive look behind:

(?<=n)n

It would give you the end position of:

  1. nnnn  
  2. n*n*nn  
  3. nn*n*n


As mentionned by Timothy Khouri, a positive lookahead is more intuitive

I would prefer to his proposition (?=nn)n the simpler form:

n(?=n)

(n)(?=(n))

That would reference the first position of the strings you want and would capture the second n in group(2).

That is so because:

  • Any valid regular expression can be used inside the lookahead.
  • If it contains capturing parentheses, the backreferences will be saved.

So group(1) and group(2) will capture whatever 'n' represents (even if it is a complicated regex).

show/hide this revision's text 2 add positive look ahead solution

A possible solution could be to use a positive look behind:

(?<=n)n

It would give you the end position of:

  1. nnnn  
  2. n*n*nn  
  3. nn*n*n


As mentionned by Timothy Khouri, a positive lookahead is more intuitive

I would prefer to his proposition (?=nn)n the simpler form:

n(?=n)

That would reference the first position of the strings you want.

show/hide this revision's text 1

A possible solution could be to use a positive look behind:

(?<=n)n

It would give you the end position of:

  1. nnnn  
  2. n*n*nn  
  3. nn*n*n