On Dec 6, 9:33 am, Dennis Whiteman <[email protected]> wrote: > Alternatively, this grep search and replace would work... > > Search: > (.*)\r > > Replace: > <p>\1</p>\r > > If you only perform it on the selected text, it'll give a bit of > control over how greedy it is. If your paragraphs are separated by two > returns, then add another /r at the end of the search and replace > strings.
Or leave the returns out entirely and change .* to .+, so only lines with one or more characters will be affected. -- You received this message because you are subscribed to the "BBEdit Talk" discussion group on Google Groups. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/bbedit?hl=en If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group.
