I'm having a difficult time with regex expressions. I am trying to create a table for a wiki page.
I have:
{| class="wikitable" border="1"
|+ Printer connectivity troubleshooting
! Serial Number !! IP Address
|-
|G90001 192.168.10.21
|-
|G90002 192.168.10.22
|-
|G90069 192.168.10.19
|-
I need:
{| class="wikitable" border="1"
|+ Printer connectivity troubleshooting
! Serial Number !! IP Address
|-
|G90001 || 192.168.10.21
|-
|G90002 || 192.168.10.22
|-
|G90069 || 192.168.10.19
I was able to get the pipes at the beginning of the line in using find and replace and a macro, but I can't come up with a formula that works in the slightest for the pipes between the items. Thank you so much for the help.