Closed Bug 3975 Opened 26 years ago Closed 26 years ago

String.split() not supported

Categories

(Core :: JavaScript Engine, enhancement, P3)

x86
Windows 95
enhancement

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.
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
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.
Status: RESOLVED → VERIFIED
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.