(I call it <unique> to explain how it works)
The user should be able to choose:
- if this index is made of numbers("0") or of characters("A") through an interpreter
- if this index appears even when there are no duplicate (with "!" character in front)
- and add any other character as required
Example 1: <unique[_00]> would mean that it is based on 2 numbers after a "_" and is shown only when necessary.
Code: Select all
Test1<unique[_00]> => Test1
Test1<unique[_00]> => Test1_02
Test2<unique[_00]> => Test2
Code: Select all
Test1<unique[!A]> => Test1A
Test1<unique[!A]> => Test1B
Test2<unique[!A]> => Test2A
Olivier