Reputation: 44086
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
Upvotes: 0
Views: 122
Reputation: 47134
$url = preg_replace("#/floor-plan.*#i","",$url);
should do the trick then.
Upvotes: 3
Reputation: 1570
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...
Upvotes: 0