Checks if a string is all in upper-case characters
2 people like thisPosted: 7 years ago by Martin Lockstrom
There is another "All Uppercase" snippet that does two searches - one to verify that there's at least one upper case letter and one to make sure there are no lowercase letters. "---D" is "uppercase" but "---" is not. I wanted to duplicate that behavior even though it seems a bit questionable, but do it in one regex search. The underappreciated lookahead features of RegEx allow this sort of thing - scanning forward and then rescanning forward so I use that here
1 people like thisPosted: 6 years ago by Darrell Plank