例如,假设我输入如下:
" see all of these cool spaces "
省略引号.我正在寻找的是如何将其转化为一系列单词.像这样:
['see', 'all', 'of', 'these', 'cool', 'spaces']
谢谢
这是一种方法:使用split
(参见String#split):
string.split
默认情况下,split
将字符串拆分为空格所在的数组,忽略前导和尾随空格.正是你所要求的.这与使用更明确的相同string.split(" ")
.