This is what I've tried, but it didn't remove the apostrophe, is there a better way to do it?
$title = strtr($title, array('.' => '', ',' => '', '!' => '', '\'' => ''));
$title = preg_replace('/\s+/', '-', $title);
So for example I would want to turn:
Example:
Let's Start! => lets-start
But I'm trying to find a solution that works for all cases.