I want to skip the string if it contains 'have' after Vehicles word
str 1 = "3 Vehicles have already been added",
str 2 = "13 Vehicles"
Regex I m using = ([0-9]+)[\s]*Vehicles[\s]*[^have]
output needed is "13 Vehicles"(only) but "3 Vehicles" is also matches..that is not right
Thanks in advance