Convert Number To Word

Hello,

We are usign the pluging Convert Number To Word:

but I need in spanish language, 

Someone knows if I can traslate it? usign plugins or somehing like that?

Thank you so much, regards.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Appian Employee
    in reply to Ashwin

    Here's an example that could work - I assume you want a suffix to describe the decimal length?

    a!localVariables(
      local!splitData: split(
        todecimal(
          123.23
        ),
        "."
      ),
      local!firstItem: index(local!splitData, 1, {}),
      local!secondItem: index(local!splitData, 2, {}),
      convertnumbertoword(local!firstItem)
      & " and " &
      convertnumbertoword(local!secondItem)
      &
      index(
        {"Tenths", "Hundredths", "Thousandths", "Ten Thousandths", "Hundred Thousandths", "Millionths"},
        length(local!secondItem),
        ""
      )
    )

Children