up vote 1 down vote favorite

It seems like an easy problem to solve, but It's not as easy as it seems. I have this string in PHP:

////%postname%/

This is a URL and I never want more than one slash in a row. I never want to remove the slashes completely.

This is how it should look like:

/%postname%/

Because the structure could look different I need a clever preg replace regexp, I think. It need to work with URLS like this:

////%postname%//mytest/test///testing

which should be converted to this:

/%postname%/mytest/test/testing
flag

4 Answers

up vote 3 down vote accepted

Here you go:

$str = preg_replace('~/+~', '/', $str);

Or:

$str = preg_replace('~//+~', '/', $str);

Or even:

$str = preg_replace('~/{2,}~', '/', $str);

A simple str_replace() will also do the trick (if there any no more than two consecutive slashes):

$str = str_replace('//', '/', $str);
link|flag
Much shorter than expected. I could not make it fail. Thanks! – Jens Törnell Feb 7 at 18:34
3  
str_replace won't do like this. you need a recursive function I believe. (take a look below) – sombe Feb 7 at 18:37
1  
As Gal says, the str_replace won't work if there are more than two slashes. The preg_replace will work but Bart K's version is better because it doesn't match single slashes, just two or more – meouw Feb 7 at 19:19
@Gal: Fixed. =) – Alix Axel Feb 7 at 20:24
@meouw: Thanks, I was in doubt with that one - fixed now. – Alix Axel Feb 7 at 20:24
up vote 2 down vote

Try:

echo preg_replace('#/{2,}#', '/', '////%postname%//mytest/test///testing');
link|flag
up vote -1 down vote
function drop_multiple_slashes($str)
{
  if(strpos($str,'//')!==false)
  {
     return drop_multiple_slashes(str_replace('//','/',$str));
  }
  return $str;
}

that's using str_replace

link|flag
2  
That won't work unless you change !== 0 to !== false. Plus, there's no need for recursion: while (strpos($str, '//') !== false) { $str = str_replace('//', '/', $str); } return $str; – GZipp Feb 7 at 19:03
@GZipp, you're right, I edited it. As far as I know, there is no difference in performance between recursive function and while loop (but I could gladly be proven otherwise). – sombe Feb 8 at 13:35
up vote -2 down vote
echo str_replace('//', '/', $str);
link|flag
No, that will replace '////' with '//' while a single slash is needed here. – Bart K. Feb 7 at 18:40

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.