Skip to main content

Hey guys,

I checked this post below:

https://knowledge.safe.com/questions/56005/create-a-personalised-id-with-letter-and-number.html

it helped me, but I need to use 3 letters (I will specify) and 6 numbers. I used counter to generate the numbers and used string replacer to add the letters I want. However, I need to add zeros between letters and numbers. I need to something like:

ABC000001

ABC000002

...

...

...

ABC000011

...

ABC012341

After the Counter you can use the StringPadder to add zero's before the number to get it to 6 characters. The Use the StringConcatenator to add the number to the 3 letters for the desired output..


Take a look at the stringpadder to add the extra zeros to the left of your numbers and then join your letters to the numbers


Thank you guys,

have a good day!


you can just use stringpadder on the number part.

length 6, pad 0 left.

Then concatenate with your suplied letters.


Reply