regular expressions

rbrooker

Member³
Hi,

i cant seem to get regular expressions to work in 7.0.1.1066.

if i have a list of tables and i want to put a comma at the end of each table name, i search for "$" and replace it with ",$", and nothing happens.

can you check this please?

ta.
 
To search for the end of a line you need to use \r in your regular expression. You cannot use regular expressions in the replacement text though, so you would need to create a little macro instead.
 
Back
Top