正则表达式匹配字符串开头和行尾之间的模式

时间:2014-11-07 06:52:28

标签: php regex

我希望有人可以提供一个正则表达式来匹配字符串开头的第一个出现位置和第一个出现的第一个出现位置的第一个字符串之间的所有字符串(\ n用于可视化)换行符。)

==== Section Header ====\n
Section text goes here\n
Another line\n
Yet another line\n
One more line for good measure\n

正则表达式也会匹配“Shorter Section Header'在这个例子中:

== Shorter Section Header ==\n
Text about some article\n
...\n

与另一部分标题相同'但不是'一个小节'在这个例子中:

=== Another Section Header ===\n
Some text\n
More text\n
== A sub-section ==\n

据推测,这是\ A和\ z和/或^和$的任务,但我没有运气。

1 个答案:

答案 0 :(得分:1)