Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本文件,其中包含要删除/替换的一些数据块。例如,我想删除所有的 customData 块。有没有办法在记事本++中做到这一点?我知道你可以在查找和替换中做一些事情,比如 customData(.....) 但这只会删除前 5 个字符,而且我在大括号之间有一个随机数量。谢谢
customData { blahblahblah blah{blah} randomblahblah{inside bracket blah} blahblah }
使用正则表达式搜索替换花括号之间的值。下面的正则表达式可能是合适的:
\\?\{([^{}]+)\}
为您的示例工作http://puu.sh/5fhpL.png