I am trying to find a regex that matches the following lines:
##Content## ##AnotherArea##
So far i tried
@"\\#\\#(.*?)\\#\\#" @"\\#\\#(*?)\\#\\#"
But nothing finds anything at startup:
foreach (var match in Regex.Matches(txtPageContent.Text, expressionMatch))
Where the expression matches the string containing the expression.
Can someone help me with this?
source share