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
Page Comments
.+\.([^.]+)$
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
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.