Closed
Bug 507603
Opened 16 years ago
Closed 6 years ago
regexp /[^,]*/ returns inconsistent result
Categories
(Tamarin Graveyard :: Virtual Machine, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
Future
People
(Reporter: dschaffe, Unassigned)
References
Details
Steps to reproduce:
1. var s:String = "test,test,test";
2. var regex:RegExp = /[^,]*/g;
3. var a:Array = s.match(regex);
Actual Results:
The only value in array 'a' is 'test'.
Expected Results:
The array 'a' should have 3 entries of 'test'.
Workaround (if any):
var s:String = "test,test,test";
var a:Array = s.split(",");
python and mozilla javascript return [test,test,test] tamarin returns [test]
moved from community issue http://bugs.adobe.com/jira/browse/FP-2228
Flags: flashplayer-triage+
Reporter | ||
Updated•16 years ago
|
Flags: flashplayer-qrb?
Reporter | ||
Updated•16 years ago
|
Flags: in-testsuite?
Assigned to Szeged.
Assignee: nobody → akiss
Status: NEW → ASSIGNED
Flags: flashplayer-qrb? → flashplayer-qrb+
Comment 2•15 years ago
|
||
Any fix for this bug will likely need version-checking for backwards compatibility.
Updated•15 years ago
|
Flags: flashplayer-needsversioning+
Updated•15 years ago
|
Target Milestone: flash10.1 → Future
Updated•15 years ago
|
Priority: P3 → --
Blocks: regex-upgrade
Comment 4•6 years ago
|
||
No assignee, updating the status.
Comment 5•6 years ago
|
||
No assignee, updating the status.
Comment 6•6 years ago
|
||
Tamarin is a dead project now. Mass WONTFIX.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → WONTFIX
Comment 7•6 years ago
|
||
Tamarin isn't maintained anymore. WONTFIX remaining bugs.
You need to log in
before you can comment on or make changes to this bug.
Description
•