How would I write a regex that matches the first letter of each word (going to be capitalising them via PHP), but not the word "and".
So far I have:
/\b([a-z])/ig
This works for matching the first letter of words, but obviously not including anything yet for not matching where the word is "and".