in reply to Re: How can I SPLIT a file name w/out delimiters ie: 41084109
in thread How can I split a string into fixed-length parts, rather than on delimiters?

Sounds like an overly complicated way of doing
@parts = '41084109.udp' =~ /(.{4})/g;
  • Comment on Re: Answer: How can I SPLIT a file name w/out delimiters ie: 41084109
  • Download Code