Hi
I currently have the ASP following code, where if a particular non-Latin character "д" appears in my search string, i get a desired response as below.
Code:
myQuery = request("myQuery")
If InStr(1, myQuery, "д", 1) > 0 then
Response.write "Query from languages ...... detected."
Else
Response.write "Continue searching English/Latin archive."
End if
But how do i replace my single character with an array of characters:
Code:
myArray = Array("ß","ü","ş","ğ", "ä", "д", "ф")
In other words, how do i check to see if any of the characters in myArray appears in myQuery?
Thanks in advance.
Bookmarks