2
votes
a simple Regex question
Using groups with the following regex (for example, you could probably clean this up)
Port status: (?<ID>[\d\w\-]+)\s(?<ID2>[\s\S]+)
Will give you two …
1
vote
C# Regular Expression Help
The following will give you matches on the group UserName
#*(?<UserName>\d+;#[^;]+)
It would be simply is you prepended the string with a hash and appended a …
