I have multiple text file and need to wrap each paragraph in p tags using regex.
i.e. before:
Paragraph 1 Paragraph 2 Paragraph 3
Aft
Try this
(\w+\s+\d+)
Then replace with
$1
See demo