📅  最后修改于: 2022-03-11 14:52:32.806000             🧑  作者: Mango
String[] strings = "Thequickbrownfoxjumps".split("(?<=\\G.{4})"); // split all 4 chars
String[] strings = "Thequickbrownfoxjumps".split("(?<=\\G.{100})"); // this would be all 100 chars
// -> ['Theq', 'uick', 'brow', 'nfox', 'jump', 's']