Skip to content

Commit 5d8f404

Browse files
committed
monkey patching vanderlee/php-sentence#/27
1 parent 8a9be4f commit 5d8f404

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vendor/vanderlee/php-sentence/src/Multibyte.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ public static function cleanUnicode($string)
5656
*/
5757
public static function trim($string)
5858
{
59-
return mb_ereg_replace('^\s*([\s\S]*?)\s*$', '\1', $string);
59+
$string = mb_ereg_replace('^\s*', '', $string); // left trim
60+
$string = mb_ereg_replace('\s*$', '', $string); // right trim
61+
return $string;
6062
}
6163

6264
/**

0 commit comments

Comments
 (0)