tags:

views:

59

answers:

2

I am using php and i want the part of the url without the /floor-plans/dsafasd so i want something/whatever

instead of

something/whatever/floor-plans/dsafasd

+3  A: 
$url = preg_replace("#/floor-plan.*#i","",$url);

should do the trick then.

mvds
I think * is better than + if there's nothing after floor-plan
M42
good point, fixed that. added case insensitivity as well.
mvds
A: 

If you're just trying to remove "floor-plans" you could use str_replace().

If it's always the 6th item in the URL, you could explode the url inton an array and then reassemble the pieces you'd like (removing the 5th item in this case since you start a 0 = "wiki")

If it's a regex thing, you'll need to provide more or a pattern to help someone build it...

Don