Uso stringhe con Ecmascript ovvero Javascript

stringa1       =>
sottostringa =>
inizio =>
indove =>
quanti =>
n1 =>
n2 =>
nn =>

...


Uso questa function per trasformare una stringa in un vettore numerico

Il carattere separa serve da carattere separatore.
function s2v(stringa,separa){
   var j,h,k=0,m,n=stringa.length,nvr=0,vr=[];
   with(Math){for(j=0;n>j;j++){ 
       m=stringa.indexOf(separa,k);
       h=m; if(0>m)h=n;
       vr[nvr]=eval(stringa.slice(k,h));
       if(0>m)break;
       k=h+1;nvr++;
       }}
   return vr;
   }

Giampaolo Bottoni
gpbottoni@gmail.com
1 aprile 2012