Answers for "javascript split string into equal chunks"

2

javascript string into substrings of length

function chunkSubstr(str, size) {
  const numChunks = Math.ceil(str.length / size)
  const chunks = new Array(numChunks)

  for (let i = 0, o = 0; i < numChunks; ++i, o += size) {
    chunks[i] = str.substr(o, size)
  }

  return chunks
}
Posted by: Guest on March-05-2020
1

split string into equal chunks javascript

var str="hello how are you"
var size=3
console.log(str.match(new RegExp('.{1,' + size + '}', 'g')))
//returns ["hel","lo ","how"," ar","e y","ou"]
Posted by: Guest on June-14-2021

Code answers related to "javascript split string into equal chunks"

Code answers related to "Javascript"

Browse Popular Code Answers by Language