views:

98

answers:

1

Hi! I need advise. Do you know any lib to convert string representation of number(group of words) to number? It's like of intelligent parser that may contain stop words(symbols) cutter, stemming, ets. And it gives you not only result, but smth like rightness index.

Of course various culture(languages) support required.

A: 

Here is a similar question:

http://stackoverflow.com/questions/1077600/converting-words-to-numbers-in-php

It's not a library, but there is pseudo-code to get you started.

As far as supporting various languages, I would use the built-in facilities of .NET for this purpose (System.Globalization, satellite assemblies, etc.).

Andy West