How to translate digits into words using azure cognitive services?

ashish fugat 11 Reputation points
2020-07-22T13:55:32.383+00:00

I have used azure cognitive translate service.

I can able to do English to Vietnamese like below -

"One" = "một"

But i want to do like 1 = một

How to achieve this? digit to words char.

Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,415 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Nicolas Robert 101 Reputation points MVP
    2020-07-22T14:08:27.6+00:00

    To process this "digits to word" operation, you can use Microsoft "Recognizers-Text" features.

    There is a github project available here: https://github.com/microsoft/Recognizers-Text

    You can see a sample of the behavior for Numbers here: https://github.com/microsoft/Recognizers-Text/tree/master/.NET#microsoftrecognizerstextnumber

    13275-image.png

    With that, you can replace digits with their word version. It can be used in several languages: .NET, Js, Python, Java...

    3 people found this answer helpful.

  2. Abdulmalik Alzubi 11 Reputation points
    2021-09-08T13:06:28.217+00:00

    How to translate words into digits using azure cognitive services?

    0 comments No comments