split的用法,该如何处理

split的用法在下面的代码中split是什么意思?staticvoidfill(Sets){s.addAll(Arrays.asList( onetwothreef

split的用法
在下面的代码中split是什么意思?
static   void   fill(Set   s)
{
    s.addAll(Arrays.asList( "one   two   three   four   five   six   seven ".split( "   ")));
}

[解决办法]
String[] split(String regex)
根据给定的正则表达式的匹配来拆分此字符串。
"one two three four five six seven ".split( " ");
以空格拆分