I have an array in ASP that looks like this:
3,5,7,7,3,2,3
What I want to do is group them together with a count so I would have:
Number Count
2 1
3 3
5 1
7 2
Is this possible? If so how?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In asp-classic there are no associative arrays ..
The alternative is the Scripting.Dictionary
so
this has created what you want … to see it now