Let\'s say I have the string
\"12345\"
If I .match(/\\d{3}/g), I only get one match, \"123\". Why don\'t I get
.match(/\\d{3}/g)
\"123\"
Use (?=(\w{3}))
(?=(\w{3}))
(3 being the number of letters in the sequence)