From a list to a table
Use:
Find : (.+?)\r\n(.+?)\r\n
replace : \1 \2
(add as many separating blanks as required)
Explanation:
-
(.+?)
: group containing at least one character. The?
denotes lazy match (meaning match as little as possible) -
\r\n
: end-of-line (on Windows) -
\1
: value of the first group.
Ensure that your settings match the ones in my dialog: