Sat Jul 14, 2012 6:54 pm
Dim myArray(3)
myArray(0) = "Tom"
myArray(1)="Ahmed"
myArray(2)="Joseph"
myArray(3)="Ali"
For Each arrElement In myArray
Response.Write(arrElement & "<br>")
Next
search_string="To"
filterResults=Filter(myArray,search_string)
Response.Write "<br>-----After Filter------<br>"
For Each filter_elem In filterResults
Response.Write(filter_elem & "<br>")
Next
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.