On 29 Apr 2019, at 11:20, Archibald Campbell <[email protected]> wrote: > In the search, put parentheses around your search pattern, ala (\d\d\d\d), > and then on the replace, try \t\1. The "\1" is a backreference to the > pattern, so it'll put that pattern after the tab. There's more in the manual > about it.
The entire match pattern is always in &. Search for \d\d\d\d and replace with \t& -- Honesty may be the best policy, but it's important to remember that apparently, by elimination, dishonesty is the second-best policy. -- This is the BBEdit Talk public discussion group. If you have a feature request or need technical support, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <https://www.twitter.com/bbedit> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/bbedit.
