Notepad++ wildcard

后端 未结 4 843
被撕碎了的回忆
被撕碎了的回忆 2021-02-08 01:17

how to find and replace all characters after the main domain (including the \"/\" character) using a wild card?

For example, i have the following 4 rows:



        
4条回答
  •  北海茫月
    2021-02-08 01:30

    Use Regular Expression in Replace and then use this:

    /.*
    

    Untick the . matches newline and ofc replace it with nothing ;)

提交回复
热议问题