Is there an alternative to using a regular expression to detect if a string contains uppercase characters? Currently I\'m using the following regular expression:
<
You could probably also do (if you want something that will work in .NET 1.0 :):
bool hasUpperCase = !fullUri.ToLower().Equals(fullUri);
Although a regex this simple will probably work fine