;doc:csv: Regular expressions in CSV rules: edits

This commit is contained in:
Simon Michael 2025-11-19 10:19:10 -10:00
parent 2a8fdccdd4
commit 19efd392b9

View File

@ -4300,7 +4300,7 @@ Here are some examples:
- Does foo contain a non-zero number ? `if %foo [1-9]` - Does foo contain a non-zero number ? `if %foo [1-9]`
- Is it negative ? `if %foo -` - Is it negative ? `if %foo -`
- Is it non-negative ? `if ! %foo -` - Is it non-negative ? `if ! %foo -`
- Is it >= 10 ? `if %foo [1-9][0-9]+\.` (assuming there's always a decimal period and no leading zeroes) - Is it >= 10 ? `if %foo [1-9][0-9]+\.` (assuming a decimal period and no leading zeros)
- Is it >= 10 and < 20 ? `if %foo \b1[0-9]\.` - Is it >= 10 and < 20 ? `if %foo \b1[0-9]\.`
### Setting amounts ### Setting amounts