31
1
using System;
2
using System.Text.RegularExpressions;
3
4
string multiLineText =
5
"""
6
This is some sample text.
7
# This is a comment.
8
And here's another line.
9
# Another comment.
10
""";
11
12
foreach (var comment in FindComments(multiLineText))
13
{
14
Console.WriteLine(comment);
15
}
16
17
static string[] FindComments(string input)
18
{
19
// Use RegexOptions.Multiline to treat ^ as the start of each line.
20
Regex commentRegex = new Regex("^#.*$", RegexOptions.Multiline);
21
22
var matches = commentRegex.Matches(input);
23
string[] comments = new string[matches.Count];
24
for (int i = 0; i < matches.Count; i++)
25
{
26
comments[i] = matches[i].Value;
27
}
28
29
return comments;
30
}
31
Cached Result