Skip to content

Instantly share code, notes, and snippets.

View moozzyk's full-sized avatar

Pawel Kadluczka moozzyk

View GitHub Profile
var m = Regex.Match("CentOS Linux release 7.1.1503(Core)", @"^(?<distro>\S+) \S+ \S+ (?<version>\d\.\d)\..+$");
if (m.Success)
{
Console.WriteLine($"Distro: {m.Groups["distro"]} Version: {m.Groups["version"]}");
}