这句代码是什么意思
用;将字符串arr分割
用“;”来将字符串进arr行分割
给你举个栗子就好理解了;
"2:3:4:5".split(":") //将返回["2", "3", "4", "5"]"|a|b|c".split("|") //将返回["", "a", "b", "c"]
"hello".split("") //可返回 ["h", "e", "l", "l", "o"]
也就是所说的用;将字符串分割