PHP: Best way to extract text within parenthesis? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:34:05Zhttp://stackoverflow.com/feeds/question/196520http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196520/php-best-way-to-extract-text-within-parenthesis2PHP: Best way to extract text within parenthesis?Wilco2008-10-13T02:08:55Z2008-10-13T03:34:15Z
<p>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.</p>
<p>So far, the best I've come up with is this:</p>
<pre><code>$fullString = "ignore everything except this (text)";
$start = strpos('(', $fullString);
$end = strlen($fullString) - strpos(')', $fullString);
$shortString = substr($fullString, $start, $end);
</code></pre>
<p>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?</p>
http://stackoverflow.com/questions/196520/php-best-way-to-extract-text-within-parenthesis/196536#1965368Answer by Owen for PHP: Best way to extract text within parenthesis?Owen2008-10-13T02:16:39Z2008-10-13T02:16:39Z<p>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)</p>
<pre><code>$text = 'ignore everything except this (text)';
preg_match('#\((.*?)\)#', $text, $match);
print $match[1];
</code></pre>
http://stackoverflow.com/questions/196520/php-best-way-to-extract-text-within-parenthesis/196538#1965381Answer by Ambush Commander for PHP: Best way to extract text within parenthesis?Ambush Commander2008-10-13T02:18:02Z2008-10-13T02:18:02Z<p>So, actually, the code you posted doesn't work: substr()'s parameters are $string, $start and <strong>$length</strong>, and strpos()'s parameters are $haystack, $needle. Slightly modified:</p>
<pre>$str = "ignore everything except this (text)";
$start = strpos($str, '(');
$end = strpos($str, ')', $start + 1);
$length = $end - $start;
$result = substr($str, $start + 1, $length - 1);</pre>
<p>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.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/196520/php-best-way-to-extract-text-within-parenthesis/196547#1965470Answer by orlandu63 for PHP: Best way to extract text within parenthesis?orlandu632008-10-13T02:24:25Z2008-10-13T02:24:25Z<p><a href="http://php.net/manual/en/function.explode.php#71808" rel="nofollow">http://php.net/manual/en/function.explode.php#71808</a></p>
<p>Two years ago I've posted that. It's been a while.</p>
http://stackoverflow.com/questions/196520/php-best-way-to-extract-text-within-parenthesis/196645#1966451Answer by Rob for PHP: Best way to extract text within parenthesis?Rob2008-10-13T03:34:15Z2008-10-13T03:34:15Z<p>Use a regular expression:</p>
<pre><code>if( preg_match( '!\(([^\)]+)\)!', $text, $match ) )
$text = $match[1];
</code></pre>