Regular expression examples
Clibor's regular expressions are compatible with Perl 5.14 syntax.
Remove leading quote markers

| Find | (^|(?<=\n))[>] * |
| Replace |
Extract only the file name from the full path

| Find | .*\\(.+)\r\n |
| Replace | $1\r\n |
Add thousands separators to numbers

| Find | (\d)(?=(?:\d{3})+(?!\d)) |
| Replace | $1, |

