I am trying to split and re-concatenate a string to get a snippet of a URI.
I start from a simple ID of 16 characters and I have to divide it into 8 pairs of characters, for example from
0b00271180119cce
to
0b/00/27/11/80/11/9c/ce/
Is there any way to achieve this using only a RegEx instruction?
Using something like
([A-z0-9]{1,2})
I got a group with 8 matches but I don't know how to recombine them into a string with a separator ("/" in this specific case).
I am afraid that none of the indications below are directly usable in my context. The problem is that I can't use any of the usual programming languages (Java, JavaScript, PHP and so on), because the RegEx instruction has to be used inside a parameter in a Documentum D2 configuration (an Autonaming, to be exact ).
Thanks in advance!