Home > Web Front-end > JS Tutorial > body text

How to Strip HTML Tags from Strings in JavaScript?

DDD
Release: 2024-10-30 06:38:27
Original
318 people have browsed it

How to Strip HTML Tags from Strings in JavaScript?

Stripping HTML Tags from Strings in JavaScript

Question: How can JavaScript be used to remove HTML tags from a string?

Answer:

To strip HTML tags from a string in JavaScript, the following regular expression can be employed:

cleanText = strInputCode.replace(/<\/[^>]+(>|$)/g, "");
Copy after login

This regex targets instances where < is followed by an optional slash /, one or more non-< characters, and subsequently > or the end of the line $.

Variations:

  • Remove tags without leaving trailing spaces: cleanText = strInputCode.replace(/ ] (>|$)/g, "");
  • Remove tags and comments: cleanText = strInputCode.replace(/] (>|$)||$)/sg, "");

Considerations:

  • This regex is not foolproof and assumes a specific input format.
  • Sanitize-html or similar packages can provide a comprehensive solution for sanitizing and removing HTML tags.
  • Using a parser is the safest method for removing tags from untrusted input.

The above is the detailed content of How to Strip HTML Tags from Strings in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!