Number parsing is not very strict in some cases
Đang mở
bug
priority: undecided
Standardization
- Ngôn ngữ chính
- Scala
- Star
- 33
- Fork
- 16
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
## Describe the bug
The parsing of number in string format based on pattern is lax in some regards, mostly regarding the number of `0`s and `#`s and grouping separator placement.
This might be undesired.
## To Reproduce
1. Specify pattern for number as `0,000.0
2. It will parse _1, 000.0_, _1,1234.56_, so as _2000_
## Expected behaviour
It's to be discussed, but the more strict approach might be desired. Or based on a switch.
## Potential solution
A low hanging solution, with performance impact is to use `format` and compare it to original input. Accept input only if the input equals the formatted number.
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.