CC#•Created by Gautzilla on 7/13/2023 in #help ❔ Match literal escape strings with a regex
I tried either:
string charASCIICodeRegex = "\\x[0-9a-f]{2}";
var Matches = Regex.Matches(line, charASCIICodeRegex);
and:
string charASCIICodeRegex = @"\x[0-9a-f]{2}";
var Matches = Regex.Matches(line, charASCIICodeRegex);
without success