This tool converts quoted text into a simple list. It extracts text enclosed in quotes and outputs each quoted segment as a list item. You can choose to extract from both single and double quotes, or limit extraction to only one type. Additionally, you can specify a custom list item marker for the output.
Examples:
Convert All Quoted Text
Extracts text from both double and single quotes.
Before:
He said "Hello" and then she replied 'Hi there'.
After:
- Hello - Hi there
Convert Only Double-Quoted Text
Extracts only the text within double quotes.
Before:
He said "Hello" and then she replied 'Hi there'.
After:
- Hello
Convert Only Single-Quoted Text
Extracts only the text within single quotes.
Before:
He said "Hello" and then she replied 'Hi there'.
After:
- Hi there
Convert with Custom List Item Marker
Extracts all quoted text and prefixes each item with your custom marker.
Before:
He said "Hello" and then she replied 'Hi there'.
After (using marker "->"):
-> Hello -> Hi there