我有一个大的日志文件,我需要从中提取文件名。
该文件如下所示:
/path/to/loremIpsumDolor.sit /more/text/here/notAlways/theSame/here
/path/to/anotherFile.ext /more/text/here/differentText/here
.... about 10 million times
我需要像这样提取文件名:
loremIpsumDolor.sit
anotherFile.ext
我认为我的第一个策略是/path/to/
用''查找/替换所有内容。但我不知道如何删除空格后的所有字符。
你能帮我吗?