Skip to content

Instantly share code, notes, and snippets.

View sergioruizdeveloper's full-sized avatar

Sergio Ruiz Calful sergioruizdeveloper

View GitHub Profile
@sergioruizdeveloper
sergioruizdeveloper / checkIfInArray.asp
Created October 4, 2022 12:42 — forked from gwobcke/checkIfInArray.asp
Classic ASP Check If In Array
<%
Function in_array(element, arr, performTrim)
Dim i
in_array = False
For i=0 To Ubound(arr)
If performTrim Then '//there are some scenarios where you want to trim
If Trim(arr(i)) = Trim(element) Then
in_array = True
Exit Function
End If