gpt4 book ai didi

regex - txt文件删除url到最后 "/"得到文件

转载 作者:太空宇宙 更新时间:2023-11-04 10:17:10 26 4
gpt4 key购买 nike

我有一个 txt 文件,每行一个 url,每个 url 为:

://url/files.php?file=parent/children/file.pdf
://url/files.php?file=parent/children2/childrenofchildren2/file2.txt
......etc

我需要帮助来削减连续最后一个 / 之前的所有想法。这就是我在 notepad++ 正则表达式模式中使用的(它不起作用):

^.+[/](.*)$

得到:

file.pdf
file2.txt

但我对所有解决方法持开放态度。

最佳答案

将包括 / 在内的左边的行替换为空:

sed 's/.*\///' file

sed 's|.*/||' file

输出:

file.pdffile2.txt

关于regex - txt文件删除url到最后 "/"得到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45578253/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com