How I can isolate value of string (00010111001101000001011100011001) on strings by number of characters(8) use jquery and javascript?
I want this: Result: [ "00010111", "00110100", "00010111", "00011001" ]
You can use .match (with regexp \d{8}/g ) function which returns all characters(8)
console.log("00010111001101000001011100011001".match(/\d{8}/g));
8.