I studied two extensions:
cn.kevinkun.RegEx.aix (Kevin)
Does not support capture groups
com.AK_Tech.Regex.aix (Aarush_Kumar)
I can't use capture groups
Provides a single buggy example!
If anyone can enlighten me I would appreciate it.
Consider the following regex which searches for words whose first letter is the same as the last.
"\b((\w)[\w]*?\2\b)"
in the following text:
"x aba bac xyx yxx 12111"
I would like, for example, to retrieve the list:
[aba, a, xyx, x, 12111, 1]