Ben birlikte demetler halinde ve ben onları ayırmak için gereken kelimeleri içeren dizeleri bir dizi var.
For example
ThisWasCool - This Was Cool
MyHomeIsHere - My Home Is Here
Im yavaş yavaş normal ifadeler etrafında başımı alıyorum ve ben preg_replace kullanmanız gereken bu yapılacağına inanıyorum. Benim sorunum eşleşme bulmak için ifadeyi araya koyuyor.
Ben sadece bu kadar var
preg_replace('~^[A-Z]~', " ", $string)
Each string contains a lot of words, but ONLY the first word contains bunched words so using my example above a string would be
"ThisWasCool to visit you again" - "This Was Cool to visit you again"
I have told it to start at the beginning, and look for capitals, but what I dont know how to do is - restrict it only to the first word of each string - how to reuse the capital letter in the replace part after the space