Gossamer Forum
Home : Products : DBMan : Customization :

Searching in non-english without Case Sensitive

Quote Reply
Searching in non-english without Case Sensitive
This example is optimised for Russian users, but you can, probably, replace russian country code by your own local equivalent.

Replace

#!/usr/bin/perl (in db.cgi)

by

#!/usr/bin/perl
use locale;
use POSIX qw (locale_h);
setlocale(LC_CTYPE, 'ru_RU.KOI8-R');


or : http://www.gossamer-threads.com/perl/gforum/gforum.cgi?post=81619;search_string=case%20sensitive%20search%20russian;guest=796747 Good Luck !

Last edited by:

novic: Jul 3, 2002, 6:21 AM
Quote Reply
Re: [novic] Searching in non-english without Case Sensitive In reply to
Please check the FAQ under the section "Syntax" for a thread called "Substituting Special Characters".

I think the solution provided there by fgoldin may be just what you are looking for.

Let me know if it solved your problem.

Unoffical DBMan FAQ

http://creativecomputingweb.com/dbman/index.shtml/
Quote Reply
Re: [LoisC] Searching in non-english without Case Sensitive In reply to
I think he was providing a solution, not asking a question :)