nested-reference Questions
2
This is the fourth part in a series of educational regex articles. It show how the combination of nested reference (see: How does this regex find triangular numbers?) to "count" within a...
Plainsman asked 12/9, 2010 at 4:6
2
Solved
This question is an educational demonstration of the usage of lookahead, nested reference, and conditionals in a PCRE pattern to match ALL palindromes, including the ones that can't be matched by...
Limpid asked 19/9, 2010 at 16:27
1
I've written a regex pattern to find Fibonacci numbers (it doesn't matter why, I just did). It works wonderfully as expected (see on ideone.com):
String FIBONACCI =
"(?x) .{0,2} | (?: (?=(\\2?)...
Micro asked 13/9, 2010 at 7:10
1
This is the third part in a series of educational regex articles. It follows How does this regex find triangular numbers? (where nested references is first introduced) and How can we match a^n b^n...
Servility asked 8/9, 2010 at 5:34
3
Solved
This is the second part of a series of educational regex articles. It shows how lookaheads and nested references can be used to match the non-regular languge anbn. Nested references are first int...
Delve asked 4/9, 2010 at 22:49
1
Solved
Part of a series of educational regex articles, this is a gentle introduction to the concept of nested references.
The first few triangular numbers are:
1 = 1
3 = 1 + 2
6 = 1 + 2 + 3
10 = 1...
Hesson asked 2/9, 2010 at 13:43
1
© 2022 - 2024 — McMap. All rights reserved.