https://docs.oracle.com/javase/tutorial/i18n/format/decimalFormat.html
上述教程将数字格式模式语法描述为
<md-input-container class="my-container" flex-gt-sm>
<label>Some Label</label>
<md-select ng-model="myCtrl.selectedItem" required id="myDropDown">
<md-option ng-value="selectedItem"
ng-repeat="selectedItem in myCtrl.itemList">
{{selectedItem.thing1 + ': ' + selectedItem.thing2}}
</md-option>
</md-select>
</md-input-container>
使整数部分中的'0'成为必需的。
但是同一页面中的插图使用的模式pattern := subpattern{;subpattern}
subpattern := {prefix}integer{.fraction}{suffix}
prefix := '\\u0000'..'\\uFFFD' - specialCharacters
suffix := '\\u0000'..'\\uFFFD' - specialCharacters
integer := '#'* '0'* '0'
fraction := '0'* '#'*
不包含###,###.###
。我是在忽视某些东西还是完全错误地阅读了