0

我需要在 AWS WAF 中编写一个正则表达式模式来查找我的 Web 请求的正文是否包含任何 HTML 元素。有人可以帮我为此编写一个正则表达式。下面是我需要查找和匹配的 HTML 元素

    <
    <
    >
     
    &
    "
4

1 回答 1

0
const string = "<p>your html belongs here</p>"
string.match(/(<|<|>| |&|")/g) // this one will return boolean

注意:你应该清理你的字符串。我的意思是,你把&lt;你的字符串而不是<

于 2020-04-01T09:06:16.670 回答