Example given in PHP, but since its regex it could be applied to other languages too.
1.
$cleaned
= preg_replace(
'/\s+/'
,
' '
,
$input
);
This changes any double (or triple, quadrupal, etc) spacing into a single space.
Mainly notes to future-Twig (and for anyone else who may find them useful)
If you've found one or more of my blog posts helpful, why not say thanks by buying me a coffee or beer?
Example given in PHP, but since its regex it could be applied to other languages too.
1.
$cleaned
= preg_replace(
'/\s+/'
,
' '
,
$input
);
This changes any double (or triple, quadrupal, etc) spacing into a single space.