Create HTML table every second line
-
Hi
How do I create this in table
Like example
<tr><td>Anti-Allergy</td><td>Yes</td></tr>Anti-Allergy
Yes
Easy Iron Function
Yes
Eco TimeSave
Yes
Hand Wash
No
Inverter Motor
Yes
MixLoad 69min
Yes
MyMix
Yes
ProSense® Technology
Yes
ProSteam®
Yes
SoftPlus
Yes
Steam Function
Yes
TimeSave
Yes
UniversalDose
YesAnti-Allergy Yes -
@Gaurang-Amin said in Create HTML table every second line:
<tr><td>Anti-Allergy</td><td>Yes</td></tr>
Try:
Find:
(?-s)^(.+)\R(.+)
Replace:<tr><td>${1}</td><td>${2}</td></tr>
Search mode: Regular expressionLearn more about regular expressions HERE so that you don’t have to ask next time.