in reply to Re^2: How to split a string based on character(s) length
in thread How to split a string based on the length of a sequence of characters within the string

I'm not sure what you mean by that.
$input =~ /(.{1,10})/g
returns a list of strings just like
unpack("(A10)*", $input)
does. (In list context, of course.)