我一直在使用LINQ查詢寫了這個代碼打印輸出我如何以某種方式
static public void BracesRule(String input)
{
//Regex for Braces
string BracesRegex = @"\{|\}";
Dictionary<string, string> dictionaryofBraces = new Dictionary<string, string>()
{
//{"String", StringRegex},
//{"Integer", IntegerRegex },
//{"Comment", CommentRegex},
//{"Keyword", KeywordRegex},
//{"Datatype", DataTypeRegex },
//{"Not included in language", WordRegex },
//{"Identifier", IdentifierRegex },
//{"Parenthesis", ParenthesisRegex },
{"Brace", BracesRegex },
//{"Square Bracket", ArrayBracketRegex },
//{"Puncuation Mark", PuncuationRegex },
//{"Relational Expression", RelationalExpressionRegex },
//{"Arithmetic Operator", ArthimeticOperatorRegex },
//{"Whitespace", WhitespaceRegex }
};
var matches = dictionaryofBraces.SelectMany(a => Regex.Matches(input, a.Value)
.Cast<Match>()
.Select(b =>
new
{
Index = b.Index,
Value = b.Value,
Token = a.Key
}))
.OrderBy(a => a.Index).ToList();
for (int i = 0; i < matches.Count; i++)
{
if (i + 1 < matches.Count)
{
int firstEndPos = (matches[i].Index + matches[i].Value.Length);
if (firstEndPos > matches[(i + 1)].Index)
{
matches.RemoveAt(i + 1);
i--;
}
}
}
foreach (var match in matches)
{
Console.WriteLine(match);
}
}
它的輸出是這樣的 {指數= 0,值= {,令牌=佈雷斯}
但我想輸出像 {BRACE
你能否詳細說明更多littble位上的問題了嗎?你能提供一個你的輸入的例子嗎?你想要改變哪一部分(以及如何改變)?輸出? – pasty
這是一個標記器。詞法分析器 輸入:{} 輸出:{指數= 0,值= {,令牌=底架} {指數= 1,值=},令牌=底架} 但我想輸出像 輸出:{底架 } Brace – Ali
這是你的代碼,但你不能改變輸出格式? – pasty