2021 Useful tools and tips for web work
Post to capture tool and tips.
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
This post and/or images used in it may have been created or enhanced using generative AI tools for clarity and organization. However, all ideas, technical work, solutions, integrations, and other aspects described here are entirely my own.