This tool extracts text blocks separated by semicolons from your text. It splits the input text into distinct blocks using semicolons (;) as the delimiter. The tool offers flexible options so you can: • Extract every text block. • Extract only blocks that contain specified substring(s). • Extract all blocks except those containing specified substring(s). • Format each extracted block using a custom format. Additionally, you can choose to trim whitespace from each block, remove duplicate blocks, and sort the blocks alphabetically. Simply enter your text and select the extraction mode and settings that suit your needs.
Examples:
Extract All Text Blocks
Splits the text at each semicolon and extracts all resulting blocks.
Error: File not found; Warning: Low battery; Info: Update available.
Error: File not found Warning: Low battery Info: Update available
Extract Only Blocks Matching Specified Substrings
Only extracts blocks that contain the specified substring "Warning".
Error: File not found; Warning: Low battery; Info: Update available.
Warning: Low battery
Extract All Except Blocks Containing Specified Substrings
Extracts every block except those that contain the specified substring "Info".
Error: File not found; Warning: Low battery; Info: Update available.
Error: File not found Warning: Low battery
Extract Blocks with Custom Format
Each extracted text block is formatted using a custom format.
Alert: Overheating; Notice: Maintenance required.
Block: Alert: Overheating Block: Notice: Maintenance required.