Just to make sure it is clear, in RegEx Pal (available on the main Paratext menu, under Advanced), you can search for: \\s\d? [^\r]+\r\n
and replace it with nothing to remove section headings. That includes the extra backslash that LivingField was talking about. (It’s possible that the previous posters didn’t mark their regular expression as “Preformatted text” when they were writing their post, so one of the backslashes was “eaten” in the output.)
Replying to @mnjames, this regular expression automatically takes care of all forms of section headings, \s
, \s1
, s2
, etc. The regex contains \d?
, which tells it to match an optional digit, so that matches all of those section heading forms. You don’t need to search for the \s
markers separately.