Skip to main content

Home/ Google/ Group items tagged string

Rss Feed Group items tagged

yc c

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

  •  
    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 the end of a line: .+\.([^.]{3})$ To find a three letter extension anywhere in a string you can use: .+\.([^.]{3})\s
1 - 2 of 2
Showing 20 items per page