borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (ListBox Double Click)Next Topic (MShflexgrid Error???) New Topic New Poll Post Reply
AndreaVB Forum : VB.Net : JavaScript issue, plz help
Poster Message
Sekar
Level: Sage

Registered: 11-03-2004
Posts: 63

icon JavaScript issue, plz help

I have 100s of check boxes in my JSP page. Each checkbox has some specific value, which I tied. when I loop thro' and get those values it put comma unnecessarily like this.

654,,,,,,,,,,485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,258,,,,,,,786,124

I want to remove commas and get the value like this,  how?
654,485,258,786,124

my code syntax like this:
var myArray = new Array();
for (i=0;loop.. ){
if (document......checked) {
myArrary = checkedbox.value;
}
}

15-05-2006 at 11:34 PM
View Profile Send Email to User Show All Posts | Quote Reply
~Bean~
Level: VB Guru


Registered: 07-04-2003
Posts: 488
icon Re: JavaScript issue, plz help

found this regex on another site...


var myString = "{6} 123 Main St {7} Vancouver {7} CA {3}";
myString = myString.replace(/\{6\}/g, "#").replace(/\{7\}/g, ",").replace(/\{3\}/g, " ");


____________________________
Eggheads unite! You have nothing to lose but your yolks.

16-05-2006 at 11:55 AM
View Profile Send Email to User Show All Posts Visit Homepage | Quote Reply
Sekar
Level: Sage

Registered: 11-03-2004
Posts: 63
icon Re: JavaScript issue, plz help

this site example helped me....thanks.

http://www.siteexperts.com/tips/html/ts16/page2.asp

16-05-2006 at 11:21 PM
View Profile Send Email to User Show All Posts | Quote Reply
AndreaVB Forum : VB.Net : JavaScript issue, plz help
Previous Topic (ListBox Double Click)Next Topic (MShflexgrid Error???) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder