in reply to Count and print in perl
Regex to break before numbers except 0 and 1:
s/\b(?=\d)(?![01]\b)/\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n/g; s/^\(\K/\n/; [download]