Regex Replacement - C#

Example

static void Main(string[] args)
{
    var oldValue = "forecolor: rgb ( 200 , 100 , 10 ); backcolor: rgb( 12,13,14);";
    var pattern = @"rgb\s?\(\s?(\d{1,3})\s?\,\s?(\d{1,3})\s?\,\s?(\d{1,3})\s?\)";

    var regex = new Regex(pattern);

    var mc = regex.Matches(oldValue);

    if (!mc.Any())
    {
        Debug.Print("Not found.");
        return;
    }

    var newValue = regex.Replace(oldValue, MatchEvaluatorMethod);

    Debug.Print($"Old: '{oldValue}'");
    Debug.Print($"New: '{newValue}'");
}

private static string MatchEvaluatorMethod(Match item)
{
    var val = item.Groups[0].Value;
    var r = int.Parse(item.Groups[1].Value).ToString("X").PadLeft(2, '0');
    var g = int.Parse(item.Groups[2].Value).ToString("X").PadLeft(2, '0');
    var b = int.Parse(item.Groups[3].Value).ToString("X").PadLeft(2, '0');
    var replaceWith = $"#{r}{g}{b}";
    return replaceWith;
}