Exemplo n.º 1
0
 /**
  * Returns a string with smart quotes, ellipsis characters, and dashes from
  * Windows-1252 (commonly used in Word documents) replaced by their ASCII
  * equivalents.
  *
  * @return Stringy Object whose $str has those characters removed
  */
 public function tidy()
 {
     $str = UTF8::normalize_msword($this->str);
     return static::create($str, $this->encoding);
 }