PHP: How to replace whitespace with a single space
If you want to replace multiple whitespace characters (multiple spaces, new lines, etc) with just a single space, use this:
- $code = preg_replace('!\s+!', ' ', $code);
If you want to replace multiple whitespace characters (multiple spaces, new lines, etc) with just a single space, use this:
- $code = preg_replace('!\s+!', ' ', $code);
More...
Comments and discussion about How to replace whitespace with a single space
Found this interesting? Maybe you want to read some more in this series?
Or see other topics in the PHP language
Arrays
General
PHP Basics
Or see other languages/frameworks:
PHP Laravel Composer Apache CentOS and Linux Stuff WordPress General Webdev and Programming Stuff JavaScriptOr see random questions
What is Agile software development?
How to undelete a soft deleted Eloquent row?
How to get the first row that matches some where queries, or create it if it doesn't exist (in Laravel's Eloquent)?
PHP Date commonly used formats
How to Force www or non-www in htaccess
How to generate an array for a dropdown (with ['key' => 'value']) suitable for a dropdown, from a Laravel collection of Eloquent objects?
How to add and remove items to an array in JS?
What are PHP's PSRs?
What is the difference between ( for ... in ) and ( for ... of ) in javascript?
How to set up an alias to map one directory to another destination