我正在寻找一个正则表达式,在下面的前一行中插入文本是我需要在notepad ++中插入的示例
submit...
action..
method=post
我想用method = post搜索然后插入一个文本“Post”,如下所示 总是它应该是method = post
的两行Post
Submit
action
method=post
请问你能在notepad ++中使用任何正则表达式吗?
答案 0 :(得分:0)
如果我理解你想要的东西: 使用Find和;替换对话框。 在查找内容中,添加“method = post”并在“替换为”中添加“发布^^提交^^操作^^方法=帖子” 然后全部替换。
答案 1 :(得分:0)
这就是我的工作方式:
找到:(.+\R.+\R.*method=post)
替换为:Post\n$1
确保您已选择Regular Expression
而未选中. matches newline
。