public marks

PUBLIC MARKS from ycc2106 with tags tips & regex

30 March 2006 20:00

C#, .Net Framework: Google Search: find file extension with regex in c#

A simple regex that could be used in C# to find file extensions is:.+\.([^.]+)$This will find an extension that is at the end of the string. To find an extension anywhere in a string you can use: .+\.([^.]+)\s A regex to find a three letter extension at t