2021 Useful tools and tips for web work

Tools and Tips
Blog post to capture useful web tool and tip stuff
Html Select Options to Plain text
- On the page with the dropdown box (in HTML, the
select
box), inspect the element. - Copy the options in the
<select>
element or copy the<select>
item and delete the<select>
open and close tags. - Paste into a file into Visual Studio Code
- Using Find and Replace, select the Regular Expression search in the Find input box.
- Use the following regex
\s*</?option.*?>
- In Replace, leave empty and select Replace / Replace All