[javascript-dev] Tasks and String manipulations
volker böhm
vboehm at gmx.ch
Mon Mar 17 10:39:23 MDT 2008
- Previous message: [javascript-dev] Tasks and String manipulations
- Next message: [javascript-dev] Tasks and String manipulations
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 16 Mar 2008, at 22:15, jasch wrote:
>
> result = newstr.split(" ", 5);
oh, ja, that's better. from the example garth posted i think he
wanted to exclude the index.
but then again, simply outputting data starting at result[1] should
do it just fine.
volker.
result = newstr.split(" ");
for(i=1; i<result.length; i++)
outlet(i-1, parseInt(result[i]));
- Previous message: [javascript-dev] Tasks and String manipulations
- Next message: [javascript-dev] Tasks and String manipulations
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
