1
在每一行上,我都有一個pdf的列表,後面跟着垃圾。 像:在Notepad ++中,使用正則表達式刪除每行以特定字符開頭的內容?
yes.pdf xxxxxx
no.pdf aewrnnta
hello.pdf aewraewr
我想使它所以我得到
yes
no
hello
上三行
我怎麼能做到這一點與正則表達式?
在每一行上,我都有一個pdf的列表,後面跟着垃圾。 像:在Notepad ++中,使用正則表達式刪除每行以特定字符開頭的內容?
yes.pdf xxxxxx
no.pdf aewrnnta
hello.pdf aewraewr
我想使它所以我得到
yes
no
hello
上三行
我怎麼能做到這一點與正則表達式?
查找:
^([^.]*)\..*
替換爲:
\1
嘗試 - 在查找框中
\.pdf.*
和
'在替換框中
確保您已選中RegEx單選按鈕。
謝謝!完善! – user964946