Kmspico Download | Official KMS Activator Website [New Version 2024] Uw betrouwbare online apotheek Drogisterij Unique in Nederland Vavada вход позволяет мгновенно попасть в мир азартных игр и бонусов! Получи доступ и начни выигрывать прямо сейчас.

Remove Multiple Extra Whitespace and Convert into Single Space Using PHP?

Friends experts php will tell you today how you can convert multiple extra space between words of any string into single space.

How to Replace multiple whitespace characters with a single space, How to Remove White Space from a String in PHP

You are explained by example below.

Input String Question :- $str = “Hello Experts PHP

Top Website Experts php “;

Output String Question :- $str = “Hello Experts PHP Top Website Experts php”;

<?php
$str = "Hello Experts PHP      

Top Website Experts php ";

$cleanStr = trim(preg_replace('/\s\s+/', ' ', str_replace("\n", " ", $str)));

echo $cleanStr;
?>