why u using Regex is for advanced Match just Use Split Function if you want to get 200 form that string & use delimeter as " " (Space)
Thanks"200 + 99 = ?"
Regex: (\d*).*(\+|-)
(\d*) = Group matching any number
.* = Match any character between the two groups (useful in case there isn't whitespace)
(\+|-) = Group matching either + or -
Matches = 200 +
Group 1 = 200
Group 2 = +