This tool extracts only decimal numbers from your text. It finds numbers that include a decimal point (e.g., "3.14" or "0.75") and ignores whole numbers. Simply enter your text, choose an extraction mode, and run the tool.
Examples:
Extract All Decimal Numbers
Extracts every decimal number from the text.
Before:
The price is 3.50 dollars, and the discount is 0.25.
After:
3.50 0.25
Extract Only Decimal Numbers Matching Specified Substrings
Extracts only decimal numbers that contain the specified substring (e.g., "3.5").
Before:
The price is 3.50 dollars, and the discount is 0.25.
After (specifying "3.5"):
3.50
Extract All Except Decimal Numbers Containing Specified Substrings
Extracts every decimal number except those that contain the specified substring (e.g., "0.25").
Before:
The price is 3.50 dollars, and the discount is 0.25.
After (excluding "0.25"):
3.50
Extract Decimal Numbers with Custom Format
Each extracted decimal number is formatted using the custom format.
Before:
Final cost is 4.99 after discount.
After (format "[{decimal}]"):
[4.99]