私の複数の文字列は以下のようなものです
###
some content
that I need to match
and might have some special character in it such as | <> []
###
ハッシュ間のコンテンツを取得しようとしています。以下の正規表現を試しましたが、それに一致せず、null を返します。
var regex = /### ((.|\n)*) ###/;
var match= regex.exec(aboveContentAsString);
console.log(match[1]);