Lines Matching refs:hyphen
15 protected $hyphen = '­'; variable in phpHyphenation
53 * @param string $hyphen The hypen to use (default: <code>­</code>)
56 public function setHyphen($hyphen='­') { argument
57 if (strlen($hyphen) == 0) return false;
60 $this->dictWords[$key] = str_replace($this->hyphen, $hyphen, $value);
62 $this->hyphen = $hyphen;
83 * @param string $hyphen Hyphen to use (default: <code>­</code>)
86 public function __construct($language='en', $hyphen='­') { argument
88 $this->hyphen = $hyphen;
131 … $this->dictWords[str_replace('/', '', $entry)] = str_replace('/', $this->hyphen, $entry);
212 if(mb_strpos($word, $this->hyphen) !== false) return $word;
246 array_splice($single_character, $i+$inserted+1, 0, $this->hyphen);