Skip to content
View bluesatyr's full-sized avatar
Block or Report

Block or report bluesatyr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. portfolio portfolio Public

    JavaScript

  2. Uot-Project3-Group05/uot-project3-group5 Uot-Project3-Group05/uot-project3-group5 Public

    SPA - MERN application

    JavaScript

  3. Project-Two-Group-Nine/SWATCH Project-Two-Group-Nine/SWATCH Public

    JavaScript

  4. projone/tweet-tracks projone/tweet-tracks Public

    JavaScript 1

  5. An HTML Tag Regex Explained An HTML Tag Regex Explained
    1
    # HTML Tag Regular Expression Explained
    2
    
    
    3
    The Regular Expression (regex) we will be looking at in this tutorial is designed to match any html tags in a document and return the match. It also includes subgroups for the type of tag (h1, footer, a etc.), any attributes the tag may have, as well as the content contained between the opening and closing tags. 
    4
    
    
    5
    This regex makes possible a number of useful actions, such as manipulating an html file to strip all attributes from tags, or perhaps removing all content within the tags. These actions may also be used to extract bare html to create templates or for removing hard-coded style tags within text content.