How to replace all tags in html text

How to replace all tags in html text
(?i) means do not match case. Replace all uppercase and lowercase letters.
html = html.replaceAll("(<(?i)(|)[^]*/?>)|( )|(')|(\")", "");
System.out.println(html);
(<(?i)(|)[^]*/?>)|( )|(')|(\") -- matches all tags, spaces, and quotes. If you only want to replace a part, make the following changes
(<(?i)(|)[^]*/?>) --Replace all tags
(<(?i)(p|img)[^]*/?>) -- replace p and img tags
(<(?i)a[^]*/?>) --Replace only the a tag

<<:  How to handle spaces in CSS

>>:  Modify the style of HTML body in JS

Recommend

Docker meets Intellij IDEA, Java development improves productivity tenfold

Table of contents 1. Preparation before developme...

CSS3 implementation example of rotating only the background image 180 degrees

1. Mental Journey When I was writing the cockpit ...

How to embed flash video format (flv, swf) files in html files

Flash file formats: .FLV and .SWF There are two ex...

Vue method to verify whether the username is available

This article example shares the specific code of ...

Detailed explanation of putting common nginx commands into shell scripts

1. Create a folder to store nginx shell scripts /...

50 Beautiful FLASH Website Design Examples

Flash enabled designers and developers to deliver...

Simple encapsulation of axios and example code for use

Preface Recently, when I was building a project, ...

mysql8.0.23 msi installation super detailed tutorial

1. Download and install MySql Download MySql data...

JavaScript to achieve product magnifying glass effect

This article shares the specific code of JavaScri...

Detailed tutorial on installing MySQL 8.0.19 in zip version on win10

Table of contents 1. After downloading, unzip it ...

What is this in JavaScript point by point series

Understand this Perhaps you have seen this in oth...

How to visualize sketched charts in Vue.js using RoughViz

introduce A chart is a graphical representation o...

A brief analysis of SQL examples for finding uncommitted transactions in MySQL

A long time ago, I summarized a blog post titled ...

Quick solution for forgetting MySQL8 password

Preface When we forget the MySQL database passwor...