* **Replace wrappers around strings** Find string ``` <\?= __\('(.*)?'\) \?> // ``` Substitution ``` // ``` * **Trim unicode/UTF-8 whitespace in PHP** ``` preg_replace('/^[\pZ\pC]+|[\pZ\pC]+$/u', '', $string); ```