Is there some easy little phpcode that will tidy up, my text , which im parsing into a thread. Like starting a sentence with capitals, ending it with a dot, etc, changing colors in to one standard color.
This will capitalise first char and end in a dot if ! || ? || . are not the end char. This is basic code, u'd need to expand on it I am sure. $str = ucfirst($threadString); if (!in_array(substr($str, -1), array('.', '!', '?')) $str .= '.';