This tool extracts sentences from your text based on their starting character. It detects sentence boundaries and allows you to choose from three processing modes: extracting only the sentences that start with a lowercase letter, extracting the sentences that do not start with a lowercase letter, or highlighting the sentences that start with a lowercase letter by wrapping them with a custom placeholder.
Examples:
Extract Sentences Starting with Lowercase
Extracts only the sentences that begin with a lowercase letter.
Before:
hello world. This is a test. another sentence starts lowercase.
After:
hello world. another sentence starts lowercase.
Extract Sentences Not Starting with Lowercase
Extracts only the sentences that do not start with a lowercase letter.
Before:
hello world. This is a test. another sentence starts lowercase.
After:
This is a test.
Highlight Sentences Starting with Lowercase
Wraps sentences that begin with a lowercase letter with the specified placeholder.
Before:
hello world. This is a test. another sentence starts lowercase.
After (with placeholder "[highlight]"):
[highlight]hello world.[highlight] This is a test. [highlight]another sentence starts lowercase.[highlight]