Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My string looks like this

$string_value = /hello/world/this/feels/great/

how can I trim world and feels so the output looks like ?

$string_value = /hello/this/great/

Thanks

share|improve this question
2  
str_replace() – Juhana Jun 28 '12 at 7:18
The code you have would not work, strings must be enclosed in single or double quotes. And put a semilocon at the end on line. – Donatas Olsevičius Jun 28 '12 at 7:22

1 Answer

up vote 5 down vote accepted
<?php
$string_value = '/hello/world/this/feels/great/';
$string_value = str_replace( array( 'world/', 'feels/' ), '', $string_value );

echo $string_value;

That's the simple way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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