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.
But how do i replace my single character with an array of characters: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
In other words, how do i check to see if any of the characters in myArray appears in myQuery?Code:myArray = Array("ß","ü","ş","ğ", "ä", "д", "ф")
Thanks in advance.



Reply With Quote

Bookmarks