Exemple #1
0
 public function finish()
 {
     $this->word = Utf8::str_replace('Y', 'y', $this->word);
 }
Exemple #2
0
 /**
  * Finally
  * Turn I and Y back into lower case.
  */
 private function finish()
 {
     $this->word = Utf8::str_replace(array('I', 'Y'), array('i', 'y'), $this->word);
 }
Exemple #3
0
 /**
  * Finally
  */
 public function finish()
 {
     // turn U and Y back into lower case, and remove the umlaut accent from a, o and u.
     $this->word = Utf8::str_replace(array('a~', 'o~'), array('ã', 'õ'), $this->word);
 }
Exemple #4
0
 /**
  * And finally:
  * Remove acute accents
  */
 private function finish()
 {
     $this->word = Utf8::str_replace(array('á', 'í', 'ó', 'é', 'ú'), array('a', 'i', 'o', 'e', 'u'), $this->word);
 }
Exemple #5
0
 /**
  * Finally
  * Turn I, U back into i, u
  */
 public function finish()
 {
     // Turn I, U back into i, u
     $this->word = Utf8::str_replace(array('I', 'U'), array('i', 'u'), $this->word);
 }
Exemple #6
0
 /**
  * Finally
  */
 public function finish()
 {
     // turn U and Y back into lower case, and remove the umlaut accent from a, o and u.
     $this->word = Utf8::str_replace(array('U', 'Y', 'ä', 'ü', 'ö'), array('u', 'y', 'a', 'u', 'o'), $this->word);
 }