Preg_replace kullanarak aynı sembolün birden tekrarlarını değiştirmek?

0 Cevap php

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";

0 Cevap