- var_dump: documentation ( source)
- trim: documentation ( source)
- preg_replace: documentation ( source)
<?php
$string = "ABCDE ";
$array = array();
$array[] = trim($string);
$array[] = preg_replace('/\s+/', '', $string);
$array[] = preg_replace('/\s\s+/', '', $string);
$array[] = trim(preg_replace('/[\s\t\n\r\s]+/', '', $string));
$array[] = preg_replace('/~\x{00a0}~siu/', '', $string);
var_dump($array);