vote up 0 vote down star

Hi All

I would like to be able to remove content from a string of data.

This is an example string from google maps api.

Distance: 70.5&#160;mi (about 1 hour 12 mins)<br/>Map data &#169;2009 Google

I would like everything in between the brackets (). So can I remove everything from either side with preg_split ?

Hope you can advise.

And thank you in advance.

flag

1  
You want to get only the "about 1 hour 12 mins" or to remove everything and get: "Distance: 70.5&#160;mi <br/>Map data &#169;2009 Google" – bisko Oct 16 at 15:22
Thank you for all your answers. – Lee Oct 16 at 15:34

5 Answers

vote up 3 vote down check

This is better:

$str = "Distance: 70.5&#160;mi (about 1 hour 12 mins)<br/>Map data &#169;2009 Google";

$start = strpos($str, '(') + 1;
$end = strpos($str, ')');
$content = substr($str, $start, $end - $start);

But if you are dead-set on using a regex:

preg_match($str, '/\((.*?)\)/', $matches);
$content = $matches[1];
link|flag
Thank you very much – Lee Oct 16 at 15:33
vote up 0 vote down

explode()

// Step 1
$string  = "Distance: 70.5&#160;mi (about 1 hour 12 mins)<br/>Map data &#169;2009 Google";
$pieces = explode("(", $string);
echo $pieces[0]; // should be: Distance: 70.5&#160;mi 
echo $pieces[1]; // should be: about 1 hour 12 mins)<br/>Map data &#169;2009 Google";

// Step 2
$keeper = explode(")", $pieces[1]);
echo $keeper[0]; // should be: about 1 hour 12 mins 
echo $keeper[1]; // <br/>Map data &#169;2009 Google";
link|flag
This one's a $keeper... But do you need those two arrays? Really? – Matthew Scharley Oct 16 at 15:39
vote up 0 vote down

You could use preg_replace:

$timeDistance = preg_replace(array('/(.*)([(])(.*)([)])/'), array('\3',''), $googleString );

That should extract the text between the parens.

link|flag
vote up 0 vote down

That's basic regular expression problem. Use something like this: preg_match('/\(.*?\)/', $s, $m); where $s is your string. The matches are going to be in the $m array.

link|flag
vote up 2 vote down
if (preg_match('/\(([^)]*)\)/', $text, $regs)) {
    $result = $regs[2];
    // $result now contains everything inside the backets
}
link|flag

Your Answer

Get an OpenID
or

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