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 me0707007070/01010should give me07070 010100/0/0/BBBBBshould give me0/0/0 BBBBBAAAAA/BBBBB/CCCCCshould give meAAAAA BBBBB CCCCCC
Any ideas how i can use a regex to achieve this?