Write one regular expression for each of the following a) Matches all tags in an HTML file. HTML tags are enclosed within< > b) Matches abc, abcd, abcde but does NOT match abedef c) Matches any word that ends in ing but does does NOT include ing in the match d) Matches IP addresses. IP addresses are of the form 127.0.0.1, 169.61.16.143, 0.0.0.0, etc e) Match any line that begins with a lower-case letter f) Match any word that has more than 2 consecutive s in it. example Hissssss or Eggssssellent. Show transcribed image text Write one regular expression for each of the following a) Matches all tags in an HTML file. HTML tags are enclosed within b) Matches abc, abcd, abcde but does NOT match abedef c) Matches any word that ends in ing but does does NOT include ing in the match d) Matches IP addresses. IP addresses are of the form 127.0.0.1, 169.61.16.143, 0.0.0.0, etc e) Match any line that begins with a lower-case letter f) Match any word that has more than 2 consecutive s in it. example Hissssss or Eggssssellent.
Expert Answer
Answer to Write one regular expression for each of the following a) Matches all tags in an HTML file. HTML tags are enclosed withi…