79232527

Date: 2024-11-28 03:48:12
Score: 1
Natty:
Report link

Use regex pattern: \d+x\d+
Which match enter image description here

   string pattern = @"\d+x\d+";
        
   MatchCollection matches = Regex.Matches(input, pattern);

   foreach (Match match in matches) {
      Console.WriteLine(match.Value);
   }

Sample code

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: ArtBindu