From: Antoine Q. <an...@gr...> - 2001-09-18 17:27:08
|
Hey, This one might be solved by either of you (now that Stephane and Julien have joined). I'm trying to split this string: "rgb(255,0,0)" into an array [255,0,0] I'm using EcmaScript with the Adobe SVG Viewer 3.0 scripting engine "split(/\D+/)" to split that string, but the array returned is [,255,0,0,] !!! IE 6.0 does the split as I expect it... But which split implementation is the correct one? Thanks, Antoine |