Extract HTML option values from tag values
Generate HTML option values from the text in the option tag. If the text contains multiple words, replace the spaces with an underscore and convert all capital letters to small letters.
Start file
<select> <option>Volvo</option> <option>Aston Martin</option> <option>Audi</option> <option>Alfa Romeo</option> </select>
End file
<select> <option value="volvo">Volvo</option> <option value="aston_martin">Aston Martin</option> <option value="audi">Audi</option> <option value="alfa_romeo">Alfa Romeo</option> </select>
View Diff
2,5c2,5 < <option>Volvo</option> < <option>Aston Martin</option> < <option>Audi</option> < <option>Alfa Romeo</option> --- > <option value="volvo">Volvo</option> > <option value="aston_martin">Aston Martin</option> > <option value="audi">Audi</option> > <option value="alfa_romeo">Alfa Romeo</option>
Solutions by @kentyuan:
Unlock 3 remaining solutions by signing in and submitting your own entry