この値下げファイル想像:部分一致を無視する正規表現を書くには?
...
## Questions heading
### Question sub-heading
- some question
- some question
### Question sub-heading
- some question
## Next section heading
- blah
- blah
## Another section heading
- blah
- blah
を私は時々質問小見出しを含むことが質問セクションでの質問のすべてを抽出することができるようにする必要があります。
私の正規表現は、sub-heading doesn't exist
の場合にのみ動作します。ここに私の現在の正規表現は次のようになります。上記の例のためにこれを返します##\sQuestions([\s\S]*?)##
:
## Questions heading
##
私はそれは二つの主な見出しの間のセクション全体を返却する必要があります。これは次のようになります。私はそれらをメインセクションの見出しではなく、次の主要なセクションの見出しが始まるまで##
と表記され、マッチングを続けて###
a.k.a小見出しを無視する必要が
### Question sub-heading
- some question
- some question
### Question sub-heading
- some question
。