Welcome Guest, Not a member yet? Register   Sign In
Truncate String
#10

[eluser]sophistry[/eluser]
sorry! i couldn't resist.

i benchmarked this at around 20% faster with small strings; there's no need to go into array land at all.

this will stay fast even if the input string $content is huge while the array functions will begin to bog down (even with the limit param of explode()).

Code:
$findme = '<|more|>';
$small = substr($content, 0, strpos($content, $findme));
echo "Small -> ".$content;

EDIT: btw, make sure to use xwero's example of this string-centric technique above because it has some error trapping. that may be why the benchmarks put it slower than inparo's explode() approach.

EDIT: actually i just went back and tested and you don't need error trapping at all in either approach - both nested functions handle varied text input conditions without crying.


Messages In This Thread
Truncate String - by El Forum - 06-26-2008, 12:20 AM
Truncate String - by El Forum - 06-26-2008, 12:47 AM
Truncate String - by El Forum - 06-26-2008, 01:15 AM
Truncate String - by El Forum - 06-26-2008, 01:28 AM
Truncate String - by El Forum - 06-26-2008, 01:31 AM
Truncate String - by El Forum - 06-26-2008, 05:32 AM
Truncate String - by El Forum - 06-26-2008, 05:40 AM
Truncate String - by El Forum - 06-26-2008, 05:41 AM
Truncate String - by El Forum - 06-26-2008, 06:33 AM
Truncate String - by El Forum - 06-26-2008, 08:39 AM
Truncate String - by El Forum - 06-26-2008, 08:49 AM
Truncate String - by El Forum - 06-26-2008, 08:57 AM
Truncate String - by El Forum - 06-26-2008, 08:59 AM
Truncate String - by El Forum - 06-26-2008, 09:13 AM
Truncate String - by El Forum - 06-26-2008, 09:13 AM
Truncate String - by El Forum - 06-26-2008, 11:31 PM
Truncate String - by El Forum - 06-26-2008, 11:59 PM
Truncate String - by El Forum - 06-27-2008, 12:11 AM
Truncate String - by El Forum - 06-27-2008, 12:28 AM
Truncate String - by El Forum - 06-27-2008, 12:57 AM
Truncate String - by El Forum - 06-27-2008, 12:59 AM
Truncate String - by El Forum - 06-27-2008, 01:03 AM
Truncate String - by El Forum - 06-27-2008, 01:46 AM
Truncate String - by El Forum - 06-27-2008, 03:43 AM
Truncate String - by El Forum - 06-27-2008, 03:49 AM
Truncate String - by El Forum - 06-27-2008, 04:16 AM
Truncate String - by El Forum - 06-27-2008, 04:18 AM
Truncate String - by El Forum - 06-27-2008, 04:54 AM
Truncate String - by El Forum - 07-02-2008, 01:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB