http://www.perlmonks.org?node_id=1018228

venky4289 has asked for the wisdom of the Perl Monks concerning the following question:

hiw to split the string 79899920179 into 79 89 99 201 79. As i am splitting the string using regular expression /(\d\d)/ But i am getting 79 89 99 20 17 9. I want all the numbers to be greater than 32, if it is less than 32 We need to split into three numbers i.., 201 in this case. Thanks in advance.