Skip to content

Instantly share code, notes, and snippets.

@umidjons
Created July 5, 2013 07:38
Show Gist options
  • Save umidjons/5932707 to your computer and use it in GitHub Desktop.
Save umidjons/5932707 to your computer and use it in GitHub Desktop.
RegExp Tips in Notepad++
# Put '); before EOL
# CTRL+H, Regular Expression is checked
Find what: (\r\n)
Replace with: '\);\1
# Put INSERT INTO table VALUES( before every digits at the beginning of the line
Find what: ^(\d+)
Replace with: INSERT INTO table VALUES\(\1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment