RegExp example in Python to exclude javascript from HTML code

JK1982 
Created at  

  6,960   0   0  

To exclude JavaScript from HTML code using Python, you can use regular expressions (re module) to remove all <script> tags and their contents. Here's a simple Python function to achieve this:

import re

def exclude_javascript(html_code):
    # Remove <script> tags and their contents
    cleaned_html = re.sub(r'<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>', '', html_code, flags=re.IGNORECASE)
    return cleaned_html

# Example usage
html_code_with_js = """
<html>
<head>
    <title>Sample HTML with JavaScript</title>
</head>
<body>
    <h1>Hello, world!</h1>
    <script>alert('This is JavaScript!');</script>
    <p>This is a paragraph.</p>
    <script>
        console.log('This is also JavaScript!');
    </script>
</body>
</html>
"""

html_code_without_js = exclude_javascript(html_code_with_js)
print(html_code_without_js)

This function exclude_javascript() takes an HTML code string as input and returns the HTML code with all <script> tags and their contents removed.

Make sure to test this code thoroughly on various HTML inputs to ensure it works as expected for your use case. Keep in mind that using regular expressions to parse HTML can sometimes have limitations, especially for complex HTML structures. For more robust HTML parsing and manipulation, consider using dedicated HTML parsing libraries such as BeautifulSoup.



Tags: JavaScript Regular Expression exclude_javascript Share on Facebook Share on X

◀ PREVIOUS
Python code to convert from Lunar to Solar

▶ NEXT
Try...Catch Helps Ignoring Data Type Miss-Match Error in Python

  Comments 0
SIMILAR POSTS

Difference between Java and Javascript

(updated at )

How do I replace content that based on the HTML UI Template

(created at )

Regular Expressions in JavaScript

(updated at )

Loading XML Data with JavaScript

(updated at )

Block unwanted URLs for comfortable web browsing with Chrome Addon - URL Blocker

(updated at )

OTHER POSTS IN THE SAME CATEGORY

Clean Python Environments: The Power of venv vs. Docker

(updated at )

How to Build Llama 3 AI Apps with Python: Setup & User Prompts

(updated at )

Mastering Excel Data Manipulation with Python

(updated at )

Try...Catch Helps Ignoring Data Type Miss-Match Error in Python

(updated at )

Python code to convert from Lunar to Solar

(created at )

Python example to download webpage

(updated at )

Python Tutorials for AP Computer Science Principles, Data Projects and High School Internship

(updated at )

Python Modules

(updated at )

Python Scope

(updated at )

Python Polymorphism

(updated at )

Python Iterators

(updated at )

Python Inheritance

(updated at )

Python Classes/Objects

(updated at )

Python Arrays

(updated at )

Python Lambda

(updated at )

Python Functions

(updated at )

Python While Loops/For Loops

(updated at )

Python Conditions and If statements

(updated at )

Python Dictionaries

(updated at )

UPDATES

Harness vs. OpenClaw: Two Very Different "Agents"

(updated at )

Clean Python Environments: The Power of venv vs. Docker

(updated at )

What is Docker? Why is Docker also useful in a development environment?

(created at )

UIUC 2026-2027 Academic Calendar

(updated at )

How to Build Llama 3 AI Apps with Python: Setup & User Prompts

(updated at )

Open-Source LLMs: The AI Revolution

(updated at )

Resume 2.0: Leveling Up for My First Software Gig

(created at )

Not everyone will understand what this man just did

(created at )

UIUC Dorm Guide: Find Your Perfect Fit !!

(updated at )

Unpacking IU's Shopper

(created at )

Jackie Chan's Police Story: The Action Masterpiece

(updated at )

The IVE Story: Identity, 'I AM' Charts, and Influence

(updated at )

Tech Visionaries who graduated at UIUC - You are the Next Turn

(updated at )

Open Databases for Sex Crime Occurrences in the U.S.

(updated at )

Automatically copy text to the clipboard when dragging the mouse in the Cursor

(updated at )

My First Day at University of Illinois-Urvana Champaign

(updated at )

Sand, Sea, and a Splash of Fun at Newport Beach: A Family Adventure

(updated at )

Sun, Rocks, and Adventure: A Day at Joshua Tree National Park

(updated at )

Sipping the Stars: My Starbucks Adventure

(updated at )

Exciting explore at Sequoia National Park

(updated at )

My Life Shot at Death Valley

(updated at )

Ip Man fights with Muay Thai Master

(created at )

Mad Clown - Don't Die

(created at )

How to get Student Enrollment and Degree Verification at UIUC

(updated at )

LAX Thanksgiving Rush: A Joyful Reunion

(updated at )

ZO ZAZZ(조째즈) - Don`t you know (모르시나요) (PROD.ROCOBERRY)

(updated at )

FISHINGIRLS Unleashes Energetic EP 'Funiverse' Featuring Signature Track 'Fishing King'

(updated at )

10CM - To Reach You (너에게 닿기를)

(updated at )

Feeling weak? Transform yourself at the UIUC ARC!

(updated at )

BOYNEXTDOOR - If I Say I Love You

(updated at )

The Future of Software Engineer - AI Engineering

(updated at )

G Dragon x Taeyang (Eyes Nose Lips, Power, Home Sweet Home, GOOD BOY) - LE GALA PIÈCES JAUNES 2025

(updated at )

Lie - Legend song by BIGBANG

(updated at )

Why ROLLBACK is useful when you work with Google Gemini CLI?

(created at )

Reimbursement after Vaccination at McKinley Health Center

(created at )

Gemini CLI makes a Magic! Time to speed up your app development with Google Gemini CLI!

(created at )

Common Questions from UIUC school life in terms of CS Program

(created at )

UIUC Immunization Compliance

(created at )

LEE CHANHYUK's songs really resonate with my soul - Time Stop! Vivid LaLa Love, Eve, Endangered Love ...

(created at )

LEE CHANHYUK - Endangered Love (멸종위기사랑)

(created at )

Cupid (OT4/Twin Ver.) - LIVE IN STUDIO | FIFTY FIFTY (피프티피프티)

(created at )

Common methods to improve coding skills

(created at )

US National Holiday in 2026

(created at )

BABYMONSTER “WE GO UP” Band LIVE [it's Live] K-POP live music show

(created at )

BLACKPINK - ‘Shut Down’ Live at Coachella 2023

(created at )

JENNIE - like JENNIE - One of Hot K-POP in 2025

(created at )

BABYMONSTER(베이비몬스터) - DRIP + HOT SOURCE + SHEESH

(created at )

Common Naming Format in Software Development

(created at )

In a life where I don't want to spill even a single sip of champagne - LEE CHANHYUK - Panorama(파노라마)

(created at )

Countries with more males and females - what about UIUC?

(created at )