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.
我有一个包含各种文本段的大量字符串。通过这些字符串的部分方式有两个等号' =='。
==
{{Description如果在等号之后,我想匹配' '。
{{Description
我计划的方式是'/==(\r|\n|.)*\{\{Description/i'
'/==(\r|\n|.)*\{\{Description/i'
但这会在运行正则表达式时导致 SEGFAULT。
如果没有,我还能如何构建一个正则表达式来匹配上述内容(\r|\n|.)*?
(\r|\n|.)*
.*如果您添加修饰符,它将起作用s。此外,{具有特殊含义(引入数字量词),因此应该对其进行转义。最后,*大概应该是偷懒了,不然会找LAST的样子{{Description
.*
s
{
*
/==.*?\{\{Description/is