cancel
Showing results for 
Search instead for 
Did you mean: 

Mapping logic

Former Member
0 Kudos

Hi All,

My requirement is Input field will have value as A1,A2,A3,.... A200, Output must be in 10 digits A0000000001. Zero's should be added after the character  A and before the numeric value.

Eg:

A78 -->A0000000078

A102 --> A0000000102

I tried with node functions, but it is not working. Pls give me some idea to achieve this.

Regards,

Jeevitha N

Accepted Solutions (1)

Accepted Solutions (1)

vicky20691
Active Contributor
0 Kudos

Hi Jeevitha,

String digits = input.substring(1,len);

return digits;

Former Member
0 Kudos


Thanks vikas

It is working...

Answers (0)