input:
combined-interior
output:
combinedInterior
I have a string in PHP and I want to remove this character - and every letter after I should be big.
What I did till now:
$new_string = str_replace('-','',$orginal_string)
but this give me this output:
combinedinterior
any help?