Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. Improve this question This is the case: i’m working on a Wordpress theme and all the titles (h1,h2,h3,h4,h5,h6) on a page needs to be in uppercase except for
Tag: uppercase
Add spaces between words in a camelCased string then uppercase the first word
I have two types of strings, hello and helloThere. What I want is to change them so they read like: Hello and Hello There depending on the case. What would be a good way of doing this? Answer you can use ucwords like everyone said… to add the space in helloThere you can do $with_space = preg_replace(‘/[A-Z]/’,” $0″,$string); then ucwords($with_space);