Question: Q2.Write a method int countText (String webaddress, String txt) that takes as arguments a webpage address (e.g. http://ok.ubc.ca/welcome.html) and a search string and then shows

Q2.Write a method int countText (String webaddress, String txt) that takes as arguments a webpage address (e.g. http://ok.ubc.ca/welcome.html) and a search string and then shows the number of occurrences of the search string within the webpage. A sample application could be to search the number of hyperlinks in a webpage. For example, calling the method with this code: String webaddress = ''http://ok.ubc.ca/welcome.htm1"; int count - countText (webaddress, ""); System.out.println (webaddress + " has "count + " links."); would result in an output similar to the following: http://ok.ubc.ca/welcome.html has 81 links
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
