Maxwell
12/17/2019 - 1:53 AM

Remove Whitespace From String

text = " Hello World!" # Remove leading or trailing whitespace
text = text.trim() # ^^^

array = [element.trim() for element in array] # Trim all elements in string array