Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Sacha MoufarregeSacha MoufarregePriority
MajorLabels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Sacha Moufarrege
Sacha MoufarregePriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 12 February 2019 at 17:52
Updated 18 March 2021 at 12:10
Resolved 18 March 2021 at 12:10
When I run REFind() with sub expressions all elements in
.match
are the same.result = reFind("oo([0-9]+)", "foo42", 1, true);
returns
{ "len": [ 4, 2 ], "match": [ "oo42", "oo42" ], "pos": [ 2, 4 ] }
instead of
{ "len": [ 4, 2 ], "match": [ "oo42", "42" ], "pos": [ 2, 4 ] }
In ACF 2018 this seems to be returned correctly.