[C#] Regex sample
using System.Text.RegularExpressions; public static void ProcessFile(string path) { Regex linkParser = new Regex("\\_\\d{4}(\\_|\\.)", RegexOptions.Compiled | RegexOptions.IgnoreCase); foreach (Match m in linkParser.Matches(path)) { Debug.Log(m.Value); } }










