We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9be4f commit 5d8f404Copy full SHA for 5d8f404
vendor/vanderlee/php-sentence/src/Multibyte.php
@@ -56,7 +56,9 @@ public static function cleanUnicode($string)
56
*/
57
public static function trim($string)
58
{
59
- return mb_ereg_replace('^\s*([\s\S]*?)\s*$', '\1', $string);
+ $string = mb_ereg_replace('^\s*', '', $string); // left trim
60
+ $string = mb_ereg_replace('\s*$', '', $string); // right trim
61
+ return $string;
62
}
63
64
/**
0 commit comments