43 # MySQL fulltext index doesn't grok utf-8, so we
44 # need to fold cases and convert to hex
46 # Replacing apostrophe sign U+2019 with U+0027
47 $s = str_replace(
"\u{2019}",
'\'', $string );
49 $s = parent::normalizeForSearch( $s );
Belarusian in Taraškievica orthography (Беларуская тарашкевіца)
normalizeForSearch( $string)
The Belarusian language uses apostrophe sign, but the characters used for this could be both U+0027 a...
Base class for language-specific code.