Write a method called stripHtmlTags that accepts a Scanner representing an input file containing an HTML web

Question:

Write a method called stripHtmlTags that accepts a Scanner representing an input file containing an HTML web page as its parameter, then reads that file and prints the file’s text with all HTML tags removed. A tag is any text between the characters < and > . For example, consider the following text:

My web page   There are many pictures of my cat here, as well as my very cool blog page, which contains awesome stuff about my trip to Vegas. Here's my cat now:

If the file contained these lines, your program should output the following text:

You may assume that the file is a well-formed HTML document and that there are no < or > characters inside tags.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: