崇高的文字只找到 <?特点

Sublime text find only <? character

有没有办法在 sublime text 中获取所有 <? 但不是 <?php<?= 的内容?

我试过 <? \n,它没有给我想要的结果。

您应该使用正则表达式搜索 <?,使用 negative lookahead

<\?(?!(php|=))