Question : Best solution for comparing and removing string form data

Hello, what would be the best classic .asp solution for comparing and removing form string data from session data without running multiple loops? E.g. I have form data from selected check boxes that looks like this: 209,553,246 and I would like to have those numbers removed from my session data: 552, 209,775,353, 632,754, 246.

I created a ASP script with a loop within a loop but its very sloppy and would like some new direction on this! Thanks

Answer : Best solution for comparing and removing string form data

Hi inrworx,
At least you only loop the checked items and use replace() function to remove the checked from the stored session.
Otherwise, you may try regular expression to remove the items.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
<%
			Dim sRemoved
			Dim sOriginal
			Dim i
			Dim sSplit
			
			sRemoved = "299,188,340"
			sOriginal = "344,190,299,234,999,188,234,340"
	
			if(sRemoved<>"")then
			  sSplit=split(sRemoved,",")
			  
			  for i=0 to Ubound(sSplit)
			      sOriginal = replace(sOriginal,sSplit(i),"|")
			  next
			  
			  sOriginal =replace(sOriginal,"|","")
			  sOriginal =replace(sOriginal,",,",",")
			  
			  if(Mid(sOriginal,len(sOriginal),1)=",")then sOriginal =Left(sOriginal, len(sOriginal) - 1)
			  
			  Response.write(sOriginal)
			end if
			%>
Open in New Window Select All
Random Solutions  
 
programming4us programming4us