diff --git a/docs/example-parsers-leading-zeros.html b/docs/example-parsers-leading-zeros.html index acfafeb5..545eff1f 100644 --- a/docs/example-parsers-leading-zeros.html +++ b/docs/example-parsers-leading-zeros.html @@ -50,7 +50,7 @@
sorter-text
in the second column) will behave the same as the number parser in the first column. This happens because the internal natural sort algorithm processes numeric values similar to the number parser.textSorter
for the third column; see issue #409). This method is not ideal as a plain sort will sort 2
after 15
, and sort all leading zeros at the top of the column.sorter-leadingZeros
in the fourth column) processes leading zeros by subtracting a very small number from the parsed value based on the total length of the string.1e-10
). If you are using higher precision values, then copy this parser and increase the precision as needed.