Question: In Code Fragment 6.5 in the textbook, also copied below), we assume that opening tags in HTML have form , as with . More generally,

In Code Fragment 6.5 in the textbook, also copied below), we assume that opening tags in HTML have form Modify Code Fragment 6.5 so that it can properly match tags, even when an opening tag may include one or more such attributes. def is matched html (raw): """Return True if all HTML tags are properly match; False otherwise.""" S = Arraystack() j = raw.find(', j+1) # find next ">' character if k == -1: return False # invalid tag tag = raw [j+1:k] # strip away if not tag.startswith('/'): # this is opening tag S.push (tag) else: this is closing tag if s.is_empty(): return false # nothing to match with if tag[1:] != S.pop(): return False # mismatched delimiter j = raw.find('
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
