Alphabet Does Not Go A to Z #6
Replies: 8 comments 5 replies
-
Henlo, I'm under the watah |
Beta Was this translation helpful? Give feedback.
0 replies
-
Can you help me |
Beta Was this translation helpful? Give feedback.
0 replies
-
using System.Text.RegularExpressions;
// If you're not regex-savvy, this matches a full string that consists
// of an arbitrary number of characters either in the range a-z or A-Z.
static readonly Regex AllLettersRegex = new("^[a-zA-Z]*$");
static bool IsAllLettersRegex(string text) => AllLettersRegex.IsMatch(text); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
THIS IS JUST A TEST DISCUSSION
Alphabet Does Not Go A to Z
Mat Gienieczko, V0ldek's personal page hosting a free, interactive,
deep dive course into the C# language and the .NET platform.
https://localhost:7121/sourcery/alphabet-does-not-go-a-to-z
Beta Was this translation helpful? Give feedback.
All reactions