检测投注正则表达式

时间:2013-03-26 16:26:00

标签: c#

当我收到一个号码时,我想对所有潜在的赌注组合进行检查,例如

L( 24, 25, 26, 27)

如果我在搜索24号而不是2号,会返回true,希望我很清楚,抱歉没有代码我是新手。

2 个答案:

答案 0 :(得分:0)

bool ChechResult(int value)
{
    String input = @"L( 24, 25, 26, 27)";
    String pattern = @"\d+";
    foreach (Match match in Regex.Matches(input, pattern))
    {
        if(value == int.Parse(match.Value))
        {
            return true;
        }
    }
    return false;
}

答案 1 :(得分:-1)

bool foundMatch = Regex.IsMatch(subject, " " + 24 + "(?:,|\\))");