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.
我有一个大的 xml 文件(>30mb),其中包含诸如 yoursite.com/category/section/3389121/title-article 之类的路径
我需要删除路径中除节点号之外的所有内容。我想也许使用正则表达式,但不知道如何使它不适用于其余的 xml 字段。
有什么想法吗?
谢谢
您可以使用 PHP 的 SimpleXML 库来解析出您需要的 XML 字段,然后针对它们运行您的正则表达式。一旦您看到它用于执行此操作的语法,您就会明白为什么它被称为 SimpleXML。