vote up 1 vote down star
2

I need to remove the first forward slash inside link formatted like this:

/directory/link.php

I need to have:

directory/link.php

I'm not literate in regular expressions (preg_replace?) and those slashes are killing me..

I need your help stackoverflow!

Thank you very much!

flag

re Good learning resource - I've learned a lot by using The Regex Coach: weitz.de/regex-coach (free for personal and commercial use) – Piskvor Jun 5 at 12:34

4 Answers

vote up 7 vote down check

Just because nobody has mentioned it before:

$uri = "/directory/link.php";
$uri = ltrim($uri, '/');

The benefit of this one is:

  • compared to the substr() solution: it works also with paths that do not start with a slash. So using the same procedure multiple times on an uri is safe.

  • compared to the preg_replace() solution: it's certainly much more faster. Actuating the regex-engine for such a trivial task is, in my opinion, overkill.

link|flag
darn. as soon as I saw this question I was hoping I'd get to suggest this. :) +1 – Paolo Bergantino Jun 5 at 12:34
vote up 0 vote down

Thank you very much, can you point me to a good learning resource for preg_replace?

best place to get to know preg_replace is of course php documentation I'd suggest checking general preg (pcre) documentation as well.

link|flag
1  
The php documentation lacks depth in regards of regular expression, there are no throughtfully explanation of expression such as the one used by duckyflip! – 0plus1 Jun 5 at 10:48
vote up 2 vote down

If it's always the first character, you won't need a regex:

$uri = "/directory/link.php";
$uri = substr($uri, 1);
link|flag
You don’t need to specify the length. – Gumbo Jun 5 at 10:35
@Gumbo - Doh! Thanks – karim79 Jun 5 at 10:37
Thanks, I completly lost my perspective.. and overlooked this simple method.. – 0plus1 Jun 5 at 10:47
vote up 4 vote down
preg_replace('/^\//', '', $link);
link|flag
Thank you very much, can you point me to a good learning resource for preg_replace? – 0plus1 Jun 5 at 10:35

Your Answer

Get an OpenID
or

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