Normalize Whitespace

Replace multiple consecutive whitespace characters with a single space and trim edges.

Code

General
trim(preg_replace('/\s+/', ' ', $s));

Parameters

String with irregular whitespace

Server

More PHP Snippets