The given string is something like:
words words {{{value}}} some other words {{{value2}}}
I'm trying the following one:
const string pattern = @"\b({{{)\w+(}}})\b";
Regex optionRegex = new Regex(pattern, RegexOptions.Compiled);
MatchCollection matches = optionRegex.Matches(text);
and @"\b(\{\{\{)\w+(\}\}\})\b"
didn't helped. Please, help to create regex, TIA