cancel
Showing results for 
Search instead for 
Did you mean: 

Mapping help - substring calculations

Former Member
0 Kudos

Hi,

I need to do mapping like below

for eg., if my source is coming 12345.000 then my target should remove the decimal and the value should be 12345000

also it the source is 0.000 then target should be 0000.

how can we maintain this at runtime...pls help me out

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

you can use the replaceString function (replace "." with "" (empty string)).

Regards,

Koen

Former Member
0 Kudos

Thanks alot...it's working fine

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Simply use replace string function.

1 Argumnet - input

2 Argument- "."

3 argumnet- ""(put empty in a constant)

Thanks

Amit