Bir acemi bir soru:
Diyelim ki böyle bir dize var diyelim:
$string = "hello---world";
How would I go about replacing the --- with a single hyphen? The string could easily look like this instead:
$string = "hello--world----what-up";
İstenen sonuç olmalıdır:
$string = "hello-world-what-up";