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 can use LINQ:
fullUri.Any(char.IsUpper);