Toad RegEx replace

Replace in toad using regular expressions

This example will enclose numbers for sql insert statement.

Find what: (^[0-9]*)
Replace with: ‘$1’,

Leave a comment