Issue 218: EReg.matchSub with ^ anchor
Status:  Duplicate
Merged:  issue 213
Owner: ----
Closed:  Dec 2012
Project Member Reported by si...@haxe.org, Dec 12, 2012
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
I just saw this was already posted as part of #213.
Dec 12, 2012
Project Member #2 si...@haxe.org
(No comment was entered for this change.)
Status: Duplicate
Mergedinto: 213