I am trying to use Regex to find out if a string matches *abc - in other words, it starts with anything but finishes with "abc"?
What is the regex expression for this? I tried *abc but "Regex.Matches" returns true for xxabcd, which is not what I want.
.EndsWith("abc")msdn.microsoft.com/en-us/library/2333wewz.aspx – Dan Bryant Oct 26 '10 at 19:06