up vote 3 down vote favorite
share [g+] share [fb]

What's the best/most efficient way to extract text set between parenthesis? Say I wanted to get the string "text" from the string "ignore everything except this (text)" in the most efficient manner possible.

So far, the best I've come up with is this:

$fullString = "ignore everything except this (text)";
$start = strpos('(', $fullString);
$end = strlen($fullString) - strpos(')', $fullString);

$shortString = substr($fullString, $start, $end);

Is there a better way to do this? I know in general using regex tends to be less efficient, but unless I can reduce the number of function calls, perhaps this would be the best approach? Thoughts?

link|improve this question

feedback

5 Answers

up vote 12 down vote accepted

i'd just do a regex and get it over with. unless you are doing enough iterations that it becomes a huge performance issue, it's just easier to code (and understand when you look back on it)

$text = 'ignore everything except this (text)';
preg_match('#\((.*?)\)#', $text, $match);
print $match[1];
link|improve this answer
Isn't *? redundant? – Dimitry Oct 13 '08 at 2:18
No, it isn't: . only matches a single character. – Edward Z. Yang Oct 13 '08 at 2:18
not necessarily, ? is a lazy match. without it, a string like 'ignore (everything) except this (text)', the match would end up being 'everthing) except this (text' – Owen Oct 13 '08 at 2:19
Good to know. Should avoid all those squared nots. E.g. /src="([^"]*)"/ now replaced with /src="(.*?)"/ :D – Dimitry Oct 13 '08 at 2:24
It's good that you can "understand when you look back on it". Failing that, you've got some Stack Overflow comments to clarify it. – Mnebuerquo Oct 13 '08 at 2:39
show 3 more comments
feedback

So, actually, the code you posted doesn't work: substr()'s parameters are $string, $start and $length, and strpos()'s parameters are $haystack, $needle. Slightly modified:

$str = "ignore everything except this (text)";
$start  = strpos($str, '(');
$end    = strpos($str, ')', $start + 1);
$length = $end - $start;
$result = substr($str, $start + 1, $length - 1);

Some subtleties: I used $start + 1 in the offset parameter in order to help PHP out while doing the strpos() search on the second parenthesis; we increment $start one and reduce $length to exclude the parentheses from the match.

Also, there's no error checking in this code: you'll want to make sure $start and $end do not === false before performing the substr.

As for using strpos/substr versus regex; performance-wise, this code will beat a regular expression hands down. It's a little wordier though. I eat and breathe strpos/substr, so I don't mind this too much, but someone else may prefer the compactness of a regex.

link|improve this answer
feedback

Use a regular expression:

if( preg_match( '!\(([^\)]+)\)!', $text, $match ) )
    $text = $match[1];
link|improve this answer
feedback

http://php.net/manual/en/function.explode.php#71808

Two years ago I've posted that. It's been a while.

link|improve this answer
So, using explode does work, but since you have to do it twice and you get all the extra overhead of allocating arrays you're not really interested in, I wouldn't really recommend it. – Edward Z. Yang Oct 13 '08 at 2:42
feedback

i tried this to get images from a page, but it only gets the first one in the code...how coud I do to get all the occurences of the tag "

<?php

$str = file_get_contents("http://www.link.com");
$start  = strpos($str, '<img');
$end    = strpos($str, '>', $start + 1);
$length = $end - $start;
$result = substr($str, $start + 1, $length - 1);

echo "<$result>";

?>
link|improve this answer
If you have a question, please feel free to ask it by clicking the "Ask Question" at the top of this page. This space here is reserved for answers only. – Jonathan Sampson Feb 2 '11 at 19:43
feedback

Your Answer

 
or
required, but never shown

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