| Issue 218: | EReg.matchSub with ^ anchor | |
| 1 person starred this issue and may be notified of changes. | Back to list |
class Main {
static public function main() {
var r = ~/^b/g;
trace(r.matchSub("ab", 1)); // true on C++
}
}
This is false on all platforms except C++, where the ^ anchor is incorrectly matched with the start of the substring.
According to Nicolas, the parallel neko fix was this: https://code.google.com/p/nekovm/source/detail?r=1881
Dec 12, 2012
Project Member
#1
si...@haxe.org
Dec 12, 2012
(No comment was entered for this change.)
Status:
Duplicate
Mergedinto: 213 |