function trimmer($text)
{
$text = preg_replace('~[^pLd]+~u', '-', $text);
$text = trim($text, '-');
$text = strtolower($text);
$text = preg_replace('~[^-w]+~', '', $text);
if (empty($text))
return 'n-a';
return $text;
}