I have string values:
strBody = “VEC_CASE1234”
strKeyWord =“VEC_CASE”
and then my match collection:
matchCollection = System.Text.RegularExpressions.Regex.Matches(strBody.ToUpper,“^”+strKeyword)
but when i run this I only get “VEC_CASE” in my match collection.
how can I code this so I get “VEC_CASE1234”?