一种计算与字符串中的模式匹配的标记数的方法。
记号是“$”后跟“$$”,“$”和“$$”之间可以有任意数量的字符。
例如:"$123$$, $ab$$, $qqwe123$$
输入字符串可以是"$122$$dddd$1aasds$$"
.
对于上述字符串,该方法的输出应为 2。
编程语言可以是 C# 或 C++。
这是我想出的代码,但试图找到最好的方法:
static int CalculateTokenCount()
{
string s = "$ab$$ask$$$$123$$";
int tokenCount = 0;
bool foundOneDollar = false;
bool foundSecondDollar = false;
if (string.IsNullOrEmpty(s))
{
return tokenCount;
}
for (int i = 0, x = 0; i < s.Length; i++)
{
if (s[i] == '$' && !foundOneDollar)
{
foundOneDollar = true;
continue;
}
if (foundOneDollar)
{
if (s[i] == '$' && !foundSecondDollar)
{
foundSecondDollar = true;
continue;
}
}
if (foundSecondDollar)
{
if (s[i] == '$')
{
tokenCount++;
}
foundSecondDollar = false;
}
}
Console.WriteLine(tokenCount);
return tokenCount;
}