Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试匹配这些项目<script>或编码或[cdata]编码。这些词可以是大写或小写或组合,我需要能够找到它们并继续找到它们。我的以下答案是否接近?我不知道如何搜索该括号,因为它是 reg-ex 的一部分。我正在尝试使用 reg-ex 101 和 reg-ex hero 进行检查,但两者都相互矛盾,并且很难确定哪个是正确的。[html<html
<script>
[cdata]
[html
<html
^.*<seescript|[cdata|%28|%3c|.*/i
我不知道如何搜索该括号,因为它是 reg-ex 的一部分
您使用 \ 逃脱它
所以 \[ 将匹配 [
目前尚不清楚您想要什么,但如果要找到以下任何一项:
[cdata[
使用这个正则表达式:
<script>|\[cdata\[|\[html\b|<html\b