你设置忽略大小写就得到你希望的结果
string s = @"<option value=100906>Vehicle Lock</option>";
System.Text.RegularExpressions.Regex r = new System.Text.RegularExpressions.Regex(@"<option\s+value=(\w*)>(.*)</option>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
if (r.IsMatch(s))
{
Response.Write(r.Match(s).Groups[0].Value);
Response.Write(r.Match(s).Groups[1].Value);
}