Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started