我正在寻找将ASCII字符(即:a)字符串转换为指定它们表示的ASCII代码(即:a;)的html实体。
但是这一次而不是转换整个HTML文档,它应该只针对ASCII字符忽略安全的编码字符(&,换行符,<,>,“和”)和html关键字(例如,class,div,h1,span)等等
所以这应该翻译成
<div class="login-area-wrapper">
<div class="login-area">
<h1>Click here to Login</h1>
<span class="create-account-link" id="createAccountSpan">
No Account?
<a href="https://www.sample.com/signup/" id="createAccount">Sign up</a>
这个:
<div class="login-area-wrapper">
<div class="login-area">
<h1>Click here to Login</h1>
<span class="create-account-link" id="createAccountSpan">
No Account?
<a href="https://www.sample.com/signup/" id="createAccount">Sign up</a>
我希望我的解释不是那么痛苦...
答案 0 :(得分:0)
我看起来非常疯狂。 :)
首先,我将为此编写一个正则表达式,尝试在您的代码中键入https://regexr.com/,并找到与您要查找的表达式正确的表达式。
例如:
"([^"]*)"
这样可以在引号中找到所有内容,但您可能需要在问题中添加一个正则表达式标签,以使某人更有资格准确地找出答案。