I use this #(\\s|^)([a-z0-9-_]+)#i for capitalize every first letter every word, i want it also to capitalize the letter if it\'s after a special mark like a da
#(\\s|^)([a-z0-9-_]+)#i
Actually dont need to match full string just match the first non-uppercase letter like this:
'~\b([a-z])~'