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( " ");
以空格拆分