You can also use Regular expressions
The above one removes all extra white space like characters.If you just want space you can use
then do the stripping for leading and trailing spaces
PHP Code:
#include<Pawn.Regex>//https://github.com/urShadow/Pawn.Regex
RemoveExtraSpace(str[]) {
new Regex:r = Regex_New("\\s");
Regex_Replace(str, r," ", str);
}
PHP Code:
new Regex:r = Regex_New(" ");