cs11dotnet7/vscode/Chapter08/WorkingWithRegularExpressions/Program.Regexs.cs

11 lines
257 B
C#
Raw Normal View History

2022-09-18 21:50:52 +02:00
using System.Text.RegularExpressions; // [GeneratedRegex]
partial class Program
{
[GeneratedRegex(digitsOnlyText)]
private static partial Regex DigitsOnly();
[GeneratedRegex(commaSeparatorText)]
private static partial Regex CommaSeparator();
}