wiki.techinc.nl/languages/classes/LanguageYue.php

46 lines
833 B
PHP
Raw Normal View History

<?php
/**
2010-10-10 12:53:37 +00:00
* Cantonese (粵語)
*
* @ingroup Language
*/
class LanguageYue extends Language {
2011-05-29 15:21:03 +00:00
/**
* @return bool
*/
function hasWordBreaks() {
return false;
}
/**
* Eventually this should be a word segmentation;
* for now just treat each character as a word.
* @todo FIXME: Only do this for Han characters...
2011-05-29 15:21:03 +00:00
*
* @param $string string
* @return string
*/
function segmentByWord( $string ) {
$reg = "/([\\xc0-\\xff][\\x80-\\xbf]*)/";
$s = self::insertSpace( $string, $reg );
return $s;
}
2011-05-29 15:03:33 +00:00
/**
* @param $string
* @return string
*/
function normalizeForSearch( $string ) {
wfProfileIn( __METHOD__ );
// Double-width roman characters
$s = self::convertDoubleWidth( $string );
$s = trim( $s );
$s = parent::normalizeForSearch( $s );
wfProfileOut( __METHOD__ );
return $s;
}
}