Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 250299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:29:58+00:00 2026-05-11T21:29:58+00:00

I am looking for a quick way to parse HTML tags out of a

  • 0

I am looking for a quick way to parse HTML tags out of a ColdFusion string. We are pulling in an RSS feed, that could potentially have anything in it. We are then doing some manipulation of the information and then spitting it back out to another place. Currently we are doing this with a regular expression. Is there a better way to do this?

<cfloop from="1" to="#ArrayLen(myFeed.item)#" index="i">
  <cfset myFeed.item[i].description.value = 
   REReplaceNoCase(myFeed.item[i].description.value, '<(.|\n)*?>', '', 'ALL')>
</cfloop>

We are using ColdFusion 8.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T21:29:58+00:00Added an answer on May 11, 2026 at 9:29 pm

    Disclaimer I am a fierce advocate of using a proper parser (instead of regex) to parse HTML. However, this question isn’t about parsing HTML, but about destroying it. For all tasks that go beyond that, use a parser.


    I think your regex is good. As long as there is nothing more than removing all HTML tags from the input, using a regex like yours is safe.

    Anything else would probably be more hassle than it’s worth, but you could write a small function that loops through the string char-by-char once and removes everything that’s within tag brackets — e.g.:

    • switch on a “inTag” flag as soon as you encounter a “<” character,
    • switch it off as soon as you encounter “>“
    • copy characters to the output string as long as the flag is off
    • for performance, use a StringBuilder Java object instead of string concatenation

    For a high-demand part of your app, this may be faster than the regex. But the regex is clean and probably fast enough.

    Maybe this modified regex has some advantages for you:

    <[^>]*(?:>|$)
    
    • catches unclosed tags at the end of the string
    • [^>]* is better than (.|\n)

    The use of REReplaceNoCase() is unnecessary when there are no actual letters in the pattern. Case-insensitive regex matching is slower than doing it case-sensitively.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for a quick way of figuring out what part of a
I'm looking for an easy and quick way to print out the results of
I'm looking for a quick way (in C#) to determine if a string is
I'm looking for a quick way to find a String in a JTextPane and
I'm looking for a quick way to log some data - I seem to
I'm looking for a quick and easy way to preload images with JavaScript. I'm
I am looking for a quick but not-so-dirty way to do snapshots of a
I'm looking for a way to parse XML in C++ in Windows and I've
I am looking for a quick way to grab some data off of one
I am looking for a quick way of enabling data entry to a well

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.