string mobile = "132008888888";
Match m = Regex.Match(mobile, "(13|15)\\d{9}");
while (m.Success)
{
    //其他操作
    m = m.NextMatch();
}

相关文章: