Closed
Bug 3975
Opened 26 years ago
Closed 26 years ago
String.split() not supported
Categories
(Core :: JavaScript Engine, enhancement, P3)
Tracking
()
VERIFIED
INVALID
People
(Reporter: dbaron, Assigned: norrisboyd)
References
()
Details
the split() method of String types is not supported, I think. It is described
in the ECMAScript spec, section 15.5.4.8. See:
http://www.ecma.ch/stand/ecma-262.htm
The above URL contains an example of its use.
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Assignee | ||
Comment 1•26 years ago
|
||
You have
lcstr = str.toLowerCase;
list = lcstr.split(" ");
Perhaps you meant
lcstr = str.toLowerCase();
list = lcstr.split(" ");
Function objects don't have a split method defined.
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Reporter | ||
Comment 2•26 years ago
|
||
Verified invalid. Sorry to bother you.
Javacsript component begin retired. Moving this bug to Javascript Engine.
You need to log in
before you can comment on or make changes to this bug.
Description
•