Regex example

Sponsored Links

Delete Quotes

Before(^|(?<=\n))[>] *
After 

Get only the file name from the full path

Before.*\\(.+)\r\n
After$1\r\n

Convert numbers to comma separators

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