当我收到一个号码时,我想对所有潜在的赌注组合进行检查,例如
L( 24, 25, 26, 27)
如果我在搜索24号而不是2号,会返回true,希望我很清楚,抱歉没有代码我是新手。
答案 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 + "(?:,|\\))");