I have a very basic Regex that I want to determine whether something is alphanumeric or not. When I pass it SPX$ though, it matches still - even though I would have expected it to be false.
The failing line is simple
Regex.IsMatch("SPX$", "[a-zA-Z0-9]+")
What am I doing wrong?