I am new to webview in android. I just want to know the way how we can fetch any particular text from webview if the text is available there.
Example: I have some text on my webview like "Android works great" Here I want if the text "Android" is available on webview then do something else otherthing.
if("Android" available on webview) {
then Print("It works great")
}
else {
Print ("Useless")
}
How I can attain the same in Android. Please help me out. Thanks in Advance :)