How to read part of google definition?

This is a pretty specific question.

What I want to do is read this part of the Google search, if it exists:

enter image description here

I want to basically read this exact part and give a damn about the user. I have most of the rest of the program, I just need the last part. I can’t even find the item id, so I ask here. The code I would use to get it would be:

var text = browser.Document.GetElementById("ID HERE"); //Browser is the name of my WebBrowser control MessageBox.Show("The result was: " + text, "MyProgramName", MessageBoxButtons.OK, MessageBoxIcon.Information); 

Also, am I doing this efficiently? Is there a better way to do this? Here I do not use multithreading.

+4
source share
1 answer

There is no identifier for this item.

enter image description here

It might be harder for people to do.

Update

If you are still looking at how to do this (are you just trying to get a definition of a word?), Then maybe you can use the Wiktionary. They have an API that you can use, which is well documented here: http://en.wiktionary.org/w/api.php and here: https://www.mediawiki.org/wiki/API:Main_page

+2
source

All Articles