HTML symbol to entity algorithm challenge

HTML symbol to entity algorithm challenge

challenge:

Converts the characters &, <, >, " (double quote), and ' (single quote) in a string to their corresponding HTML entities.

If you get stuck, use Read-Search-Ask. Try exchanging programming ideas with others, but write your own code.

For example:

convert("Dolce & Gabbana") should return Dolce &​amp; Gabbana.
convert("Hamburgers < Pizza < Tacos") should return Hamburgers <​lt; Pizza <​lt; Tacos.
convert("Sixty > twelve") should return Sixty >​gt; twelve.
convert('Stuff in "quotation marks"') should return Stuff in "quotation marks" .
convert("Shindler's List") should return Shindler's List.
convert("<>") should return &​lt;&​gt;.
convert("abc") should return abc.

Answer:

method describe
RegExp It is an abbreviation of regular expression.
replace() Replaces substrings that match a regular expression.
HTML Character Entities Reserved characters in HTML must be replaced with character entities.

function convert(str) {
 var list = {
    "&":"&amp;",
    "<":"&lt;",
    ">":"&gt;",
    '"':"&quot;,
    "'":"&apos;",   
  };
  for(var key in list){
    str=str.replace(new RegExp(key,"g"),list[key]);
  }
  return str;
}

convert("Dolce & Gabbana");

Running results:

Dolce & Gabbana

Online test:

HTML symbol to entity algorithm challenge | w3cschool

Summarize

This is the end of this article about the challenge of converting HTML symbols to entities. For more relevant content about converting HTML symbols to entities, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  How to create a MySQL master-slave database using Docker on MacOS

>>:  Detailed example of locating and optimizing slow query sql in MySQL

Recommend

A brief talk about calculated properties and property listening in Vue

Table of contents 1. Computed properties Syntax: ...

Usage and demonstration of ref in Vue

ref definition: used to register reference inform...

How to reset the root password in mysql8.0.12

After installing the database, if you accidentall...

Practical experience of implementing nginx to forward requests based on URL

Preface Because this is a distributed file system...

Installation and use tutorial of Elasticsearch tool cerebro

Cerebro is an evolution of the Elasticsearch Kopf...

How to use MySQL group by and order by together

Suppose there is a table: reward (reward table), ...

HTML multi-header table code

1. Multi-header table code Copy code The code is a...

Talk about nextTick in Vue

When the data changes, the DOM view is not update...

Summary of event handling in Vue.js front-end framework

1. v-on event monitoring To listen to DOM events,...

jQuery implements the drop-down box for selecting the place of residence

The specific code for using jQuery to implement t...

Docker installation and deployment example on Linux

After reading the following article, you can depl...

Ubuntu 20.04 how to modify the IP address example

illustrate: Today, when continuing the last offic...

View the command to modify the MySQL table structure

Brief description The editor often encounters som...

How to dynamically add a volume to a running Docker container

Someone asked me before whether it is possible to...