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:
Answer:
function convert(str) { var list = { "&":"&", "<":"<", ">":">", '"':"", "'":"'", }; for(var key in list){ str=str.replace(new RegExp(key,"g"),list[key]); } return str; } convert("Dolce & Gabbana"); Running results:
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
Table of contents 1. Computed properties Syntax: ...
ref definition: used to register reference inform...
Table of contents Install Pagoda Configure Python...
After installing the database, if you accidentall...
Preface Because this is a distributed file system...
Cerebro is an evolution of the Elasticsearch Kopf...
Suppose there is a table: reward (reward table), ...
1. Multi-header table code Copy code The code is a...
When the data changes, the DOM view is not update...
1. v-on event monitoring To listen to DOM events,...
The specific code for using jQuery to implement t...
After reading the following article, you can depl...
illustrate: Today, when continuing the last offic...
Brief description The editor often encounters som...
Someone asked me before whether it is possible to...