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.
快速提问。
我想从以下字符串中删除 sup 标记,以及其中的所有内容。
$string = "Priority Mail<sup>®</sup> International";
我该怎么做?
我想这样的事情会起作用:
preg_replace("(<([a-z]+)>.*?</\\1>)is","",$input);
$string = preg_replace ("/<sup>(.*?)<\/sup>/i", "", $string);
你应该知道 (.*?) 不能处理 \n 或 \r,所以先过滤它们。