Compresses the white space in an inputstring.
s = ' This string has extra white space'
PRINT, STRCOMPRESS(s)
This string has extra white space
s = strarr(3)
s(0) = 'a b c' s(1) = ' d e f' s(2) = 'g h i'
PRINT, TRANSPOSE(STRCOMPRESS(s, /Remove_All))
abc
def
ghi