Answers for "java split string to fixed length array"

0

java split string by length

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']
Posted by: Guest on September-04-2021

Code answers related to "java split string to fixed length array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language