So I have a case where i want to get every 5 character code which is delimited by /
Problem is the codes itself can contain the delimiter so I can't use something like ([^\/]+)
E.g.
- 07070should give me- 07070
- 07070/01010should give me- 07070 01010
- 0/0/0/BBBBBshould give me- 0/0/0 BBBBB
- AAAAA/BBBBB/CCCCCshould give me- AAAAA BBBBB CCCCCC
Any ideas how i can use a regex to achieve this?
 
     
     
    