Write a program to split a given sentence into individual words. Remove any leading or trailing whitespace from each word.
"Coding is fun."
["Coding", "is", "fun."]
" Coding is fun. !!! "
["Coding", "is", "fun.", "!!!"]
Last updated 1 year ago