<?php
$str="The ‘big-yellow’ house-is near the lake";
$keywords = preg_split("/-(?![a-z]+’ )/", $str);
print_r($keywords);
?>
