4

次の文字列に一致する正規表現を見つけようとしています:

##Content##
##AnotherArea##

これまで私は試しました

@"\\#\\#(.*?)\\#\\#"
@"\\#\\#(*?)\\#\\#"

しかし、どちらも実行時に何も見つからないようです:

foreach (var match in Regex.Matches(txtPageContent.Text, expressionMatch))

式の一致は、式を含む文字列です。

誰でもこれについて私を助けることができますか?

4

1 に答える 1

5

逃げる必要はありません#

##.*?##

簡単な説明

Options: ^ and $ match at line breaks

Match the characters “##” literally «##»
Match any single character that is not a line break character «.*?»
   Between zero and unlimited times, as few times as possible, expanding as needed (lazy) «*?»
Match the characters “##” literally «##»
于 2012-10-11T06:05:23.100 に答える