I have a string (which I got from the names of my classes) and I would like to print out my CamelCase classes as titles.<br><br>I would like it to do this:<br><br>>>> my_class_name = "ModeCommand"<br>## Do some magic here<br>
>>> my_class_name<br>'Mode Command'<br><br>Anyone know any easy way to do this?  Thanks.<br>