带文本板的多行正则表达式
我不知道如何使文本板执行扩展多行的正则表达式。
我尝试使用 perl 语法与 /myregex/m 和 m 作为修饰符,但这不起作用。我在编辑器中看不到复选框或任何内容来告诉它执行多行操作。
有人有什么想法吗?
I can't figure out how to make textpad perform a regular expression that extends multiple lines.
I tried using perl syntax with /myregex/m with m as a modifier but that didnt' work. I can't see a checkbox or anything in the editor to tell it to do multiline.
anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是完全可能的,而且很简单:) 您只需使用
\n
此搜索:
匹配此虚拟文本中第 1 行的结尾和第 2 行的开头:
It is entirely possible, and simple :) You just use
\n
This search:
Matches the end of line 1 and the start of line 2 in this dummy text:
另一种方法是使用 [\s\S]。例如,如果您想在某些 HTML 中查找
标记,您可以搜索:
Another way to do this is with [\s\S]. For example, if you wanted to find
<option>
tags in some HTML, you could search for: