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.
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:
myArray = Array("ß","ü","ş","ğ", "ä", "д", "ф")
In other words, how do I check to see if any of the characters in myArray appears in myQuery?