Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have the below values from checkboxes.

rdr(on,on,on,on,on,on,on,etc..).

i want to split the rdr values one by one. if i read first one then i want to move to second one.

how to do that using split values or some other option.

Regards,
Ganesh.S
Posted
Comments
Tarun.K.S 8-Jul-11 4:22am    
what is rdr?
Prerak Patel 8-Jul-11 4:28am    
Not clear. Elaborate more.

1 solution

If this is a string, split it on the , as in

string [] s = mystring.Split(new string[] { "," } );
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900