Jump to content

[SOLVED] Removing Multiple Occourances of a character in a String


whatnow

Recommended Posts

OK, this has to be so simple but i'm sitting in a could of confusion over this and going a little phpotty :)

 

The string is a local directory, let's say:

 

$y = www/repository/FT/forward/slashes/FT_-_forwardslashes2

 

but I'm building a string checking routine to ensure it can't be:

 

$y = www/ims_repository/FT////forward//////slashes//FT_-_forwardslashes2

 

for example.

 

Now what I'm thinking is something like:

 

$x = explode('/', $y);

foreach ($x as $key => $value){

$tmpStr .= $value . '/';

  if ($tmpStr = ????) {

        $tmpStr=""

  }

}

 

or maybe

 

$x = explode('/', $y);

foreach ($x as $key => $value){

$tmpStr .= $value . '/';

$z = strlen($tmpStr)

for ($i=0; $i<=$z; $i++) {

????// check if multiple slashes and reduce to one.

}

}

 

the ???? bit is what's getting me, if this routine is even close, this part is what I need to check for more than one slash and swap it for just one.

 

I have a feeling there's a really obvious regex to help me out?

 

I'd really appreciate any help.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.