I'm attempting to find a regular expression that will match the following strings:
##Content##
##AnotherArea##
So far I've tried
@"\\#\\#(.*?)\\#\\#"
@"\\#\\#(*?)\\#\\#"
But neither seem to find anything when running:
foreach (var match in Regex.Matches(txtPageContent.Text, expressionMatch))
Where expression match is a string containing the expressions.
Can anyone help me out on this?
#