AGAIN SEARCH ENGINE QUESTION

This is not a trivial question, or you could just search Google for
it. Some parts may already be built, but I suspect you'll have to do
a fair amount of invention on your own.

Given that you're using Rails, I assume you're searching elements
that are in a database. You might look at any of the number of full
text search components that are available for rails (acts_as_solr,
acts_as_ferret). I don't know the extent to which any of these
handle UTF-8, word stemming, etc., so you might have to implement
something yourself.

-faisal

look at iconv:

  t = Iconv.new('ASCII//TRANSLIT', 'utf-8').iconv(inputstring)

or Ferret's LowerCaseFilter

http://rubyforge.org/pipermail/ferret-talk/2007-August/003887.html