Look of Saved Searches and saved search groups. And yes an automate script can run any number of them.
But if all you want is to add a newline after every br tag you can do that with regular expressions or normal find and replace. A new line's unicode value is 10 decimal, so you can capture the br tag then replace it with a br tag and a new line char format using its hexidecimal representation. This can be done to insert any special character you want.
Last edited by KevinH; 05-10-2025 at 06:57 PM.
|