v.23.9New Feature
Add decodeHTMLComponent function
Add function decodeHTMLComponent. #54097 (Bharat Nallan).Why it matters
ThedecodeHTMLComponent function solves the problem of handling and decoding HTML-encoded strings within ClickHouse queries, allowing users to easily convert HTML entities back to their original characters. This improves data processing and cleaning workflows where input data contains HTML-encoded content.How to use it
Use thedecodeHTMLComponent function in your SQL queries to decode HTML-encoded strings. For example:SELECT decodeHTMLComponent('<>') AS decoded_string
FROM some_table