Convert Digits to Word

Hi all
I have Balance amount in digits sometimes they are in (-) and sometimes in positive so i want to convert it into word .supoose i have like 1054.43 so i want conversion in words and if i have -1054 so - one thousand and fifty four.pls help me if you have any idea

Have a look at this activity

Hi @sayali_rokade

Please refer the link below.

Regards

@pravin_calvin i have check but code having lot of errors

Hi @sayali_rokade

You have to pass the value as input string!

image

image

Regards

1 Like

@pravin_calvin thanks for help,but for negative value it take minus i need (-) symbol and then conversion

Hi @sayali_rokade

Replace the - symbol with null and add the value with String.Join (“-”, yourOutArgument)

Regards