关于[Regex Named Groups and Using Them in C#]的摘要:
While working on an issue in Codespaces, I figured this would be a good case to implement some regex. Each time I work with regex I need to figure out how it works again, but also each time I am impressed with how powerful it is. And actually, this time I learned something new: regex named groups. Regex has the ability to name each matched group which is very easy to subsequently use in C# code. In this post, I will tell you how to do exactly that.
原文地址: https://blog.verslu.is/misc/regex-named-groups-and-using-them-in-c/