給定的字符串是一樣的東西:如何匹配 '{{{' 使用RegEx
words words {{{value}}} some other words {{{value2}}}
我想下面的一個:
const string pattern = @"\b({{{)\w+(}}})\b";
Regex optionRegex = new Regex(pattern, RegexOptions.Compiled);
MatchCollection matches = optionRegex.Matches(text);
和@"\b(\{\{\{)\w+(\}\}\})\b"
沒有幫助。請幫助創建正則表達式,TIA
David已經回答了你的問題,我在我的答案中解釋了這裏[how-exactly-do-regular-expression-word-boundaries-work-in-php](http://stackoverflow.com/questions/6531724/how -exactly-do-regular-expression-word-boundaries-work-in-php/6531959#6531959)單詞邊界更詳細一點。你可以忽略這個問題有一個php標籤,這對理解單詞邊界沒有任何影響。 – stema