0

I'm intrested in getting the data of the google spelling fixer into my program. For example when I print "my name si" the program search in google and return this: enter image description here

"my name is"

I'm programming in c++ but I can learn another languge if it suits this kind of tasks more. The general goal is to get info from the web into my programs. How can I acomplish this mission? Thenx in advance.

MARK
  • 2,302
  • 4
  • 25
  • 44
user1729796
  • 63
  • 1
  • 6

1 Answers1

0

Refer to this article titled How to write a spelling corrector by Peter Norvig

Go through the "how it works section" for background knowledge

MARK
  • 2,302
  • 4
  • 25
  • 44
  • I was looking more for the ability to get info from a web page and less to create a corrector myself, that wasn't the main goal of the program. Do you have any suggustions to deal with this goal? – user1729796 Aug 20 '13 at 18:42
  • I have not used this one http://code.google.com/p/google-api-spelling-java/ but it should be good given that it internally uses the google service – MARK Aug 20 '13 at 18:46
  • There is a similar thread but for java here http://stackoverflow.com/questions/559510/looking-for-java-spell-checker-library – MARK Aug 20 '13 at 18:49
  • @Raza is there a c++ version of google api spelling? – Hani Goc May 06 '15 at 12:58