我正在尝试在文本中查找所有带有扩展名的文件名。举个例子:
<roottag>
<step>first element using file_text.txt</step>
<step>server.sql</step>
<step>using another.txt file</step>
<txt> elements other.this </txt>
</roottag>
我想提取所有带有扩展名的文件名:
file_text.txt
server.sql
another.txt
other.this
您对 preg_match_all 有任何想法吗?
提前致谢
克里斯