I have a SQL dump of content, and I'm trying to fix these links to image popups.
I am using Textmate and figured regex would be the best way.
Basically I want to change this:
jpg&title=o2_xda_atom_crystal_case.jpg&mode=basic&imgwidth=320&imgheight=480&print=0&save=0\',\'Popup
into this:
jpg\',\'Popup
How can I quickly match everything from "jpg" until I get to a \', ?
I am using Textmate and figured regex would be the best way.
Basically I want to change this:
jpg&title=o2_xda_atom_crystal_case.jpg&mode=basic&imgwidth=320&imgheight=480&print=0&save=0\',\'Popup
into this:
jpg\',\'Popup
How can I quickly match everything from "jpg" until I get to a \', ?