Regex example

Sponsored Links

Delete quotes

Find(^|(?<=\n))[>] *
Replace 

Extract only the file name from the full path

Find.*\\(.+)\r\n
Replace$1\r\n

Convert numbers to comma-separated format

Find(\d)(?=(?:\d{3})+(?!\d))
Replace$1,
Copied title and URL