So what I am trying to do is look at a string and replace (letter)-(letter) with (letter) - (letter).
For instance
$line = "Hi- my-name is joe-what is yours?"
then do some sort of str_replace so that $line changes to this:
"Hi- my - name is joe - what is yours?"
Any ideas?
TIA
Mike