标签: regex notepad++
在每一行上,我都有一个pdf列表,后面跟着垃圾。 像:
yes.pdf xxxxxx no.pdf aewrnnta hello.pdf aewraewr
我想这样做,所以
yes no hello
分三行
如何使用正则表达式执行此操作?
答案 0 :(得分:4)
尝试 -
\.pdf.*
和
''
确保选中了RegEx单选按钮。
答案 1 :(得分:1)
查找
^([^.]*)\..*
替换为:
\1