Hi,
For some reason I cannot get the colom [ : ] to be replaced with a hyphen [ - ].
Instead it only disappears and also removes the following space. So that, "attention: don't click here!" becomes "attentiondont-click-here "
What I would like to get is: attention-dont-click-here
$patterns[] = '@[/\\\.: ]@';
$replacements[] = '-';
$patterns[] = '/[!,"\'\%\?]|--/';
$replacements[] = '';
Thanks,
Tim