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

I'm getting an error with this. I'm trying to remove all chars after / is found in the string.

e.g. 'google.com/remove' should become 'google.com'

preg_replace ( '////.*/' , '' , $string);

Message: preg_replace(): Unknown modifier '/'

share|improve this question
6  
You need to escape your slashes. (\/) Ignore the fact that this looks like a butt. – Matt Jul 27 '12 at 15:49

2 Answers

up vote 0 down vote accepted

Don't use preg_replace to do that.

// PHP 5.4
$string = explode('/', $string, 2)[0];

// Before PHP 5.4
$string = array_shift(explode('/', $string, 2));
share|improve this answer

Try this:

preg_replace ('/\/(.*)/' , '' , $string);

Can't test it at the moment, but it should work...

EDIT: Tested online quickly, working as expected :)

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.