4807/11056/11055/11054/11053/2011/11052/11051/11050/10897/11049/
ASKER
OK, let's say you only wanted to return the value for
2011
<%
s = split("4807/11056/11055/11054/11053/2011/11052/11051/11050/10897/11049/", "/")
for each x in s
response.Write x & "<br />"
next
%>
For i =Lbound(b) to Ubound(b)
if b(i) = 2011 Then
'Some code here for finding 2011
End if
Next
ASKER
Where
(Left([CastID], Len([SearchCastID]) + 1) = [SearchCastID] & "/") Or
(Right([CastID], Len([SearchCastID]) + 1) = "/" & [SearchCastID]) Or
(InStr([CastID], "/" & [SearchCastID] & "/") > 0)
ASKER
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
TRUSTED BY
EDIT: Well i took a look at your other question ...if you want something similar in Access here is a way to do it :
Open in new window