Question: In java, without Arrays // Question 14: Web developers use HTML // tags in angle brackets to format the // text on web pages. Write
In java, without Arrays
// Question 14: Web developers use HTML
// tags in angle brackets to format the
// text on web pages. Write a method removeTag
// that checks whether a given string starts
// with an apparent HTML tag (a character
// or word in angle brackets) and ends with
// the a matching closing HTML tag (the same
// character or word preceded by '/', all in
// angle brackets). If yes, the methods removes
// both tags and returns the result; otherwise
// the method returns the original string
// unchanged. For example, a call to:
// removeTag("Strings are immutable")
// should return a string equal to:
// Strings are immutable
public static String removeTag(String n)
{
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
