问题:
给定以下文本文件:
blablabla
# Block 1
# Some text
## Some more text
### Even more text
### Hello
# Some text
### Again Text
# Blank lines or lines not starting with # terminate
blablabala
# Block 1
# Some text
## Some more text
### Even more text
### Hello
# Some text
### Again Text
# Blank lines or lines not starting with # terminate
blablabla
是否可以使用正则表达式提取所有以 # 开头的行的块?
注意:
该块应该是一个字符串,只需提取所有以 # 开头的行是微不足道的。
附加问题:
是否可以获得正则表达式中前导 # 的数量?