You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package extends the [ExpressionLanguage](https://symfony.com/doc/current/components/expression_language.html) component of Symfony to compile and evaluate arrays with custom functions.
* `trim(string $string, string $characters = " \n\r\t\v\x00") : string` => Strip whitespace (or other characters) from the beginning and end of a string
20
+
* `capitalize(string $string) : string` => Make a string's first character uppercase
21
+
* `toLowerCase(string $string) : string` => Make a string lowercase
22
+
* `search(string $string, int $offset, ?int $length = null) : string` => Return part of a string
23
+
* `toUpperCase(string $string) : string` => Make a string uppercase
24
+
* `fileName(string $string) : string` => Returns information about a file path
25
+
* `dateTime(string $string) : string` => Returns new DateTimeImmutable object formatted according to the specified format
26
+
* `formatDate(string $string) : string` => Returns date formatted according to given format
0 commit comments