|
| | NumberFormatter (CultureInfo culture) |
| |
| | NumberFormatter (CultureInfo culture, UnitAttribute unit) |
| | Creates a number parser based on a UnitAttribute.
|
| |
|
ICombinedNumberSequence< double > | Parse (string text) |
| | Parses text to a sequence of doubles. supports ranges, sequences, units and prefixes.
|
| |
|
ICombinedNumberSequence< double > | Parse (ReadOnlySpan< char > text) |
| | Parses text to a sequence of doubles. supports ranges, sequences, units and prefixes.
|
| |
| string | FormatNumber (object value) |
| | Parses a number back to a string.
|
| |
| object | ParseNumber (string str, Type t) |
| | Parses a single number from a string.
|
| |
| bool | TryParseNumber (string str, Type t, out object val) |
| | Try to parse a single number from a string.
|
| |
| string | FormatRange (IEnumerable values) |
| | Parses a sequence of numbers back into a string.
|
| |
Parser / back parser for numbers and sequences of numbers.