首页 > 解决方案 > Notepad++ regular expression remove parts of string

问题描述

I want to remove some strings with notepad++ but can't find the correct regular expression:

"This text is ok. This part should be removed","More Text that should stay"

i am looking for something like: Find "This part" and remove everything until the first ",

标签: notepad++

解决方案


找到解决方案:替换:此文本是可以的。(.|\r\n)*?(",)


推荐阅读