Commit 8afb8dc7 authored by liwenbin's avatar liwenbin

fix 8e7437904897429e82e52082e1537631情况

parent 65a86141
...@@ -1186,11 +1186,11 @@ public class Expression { ...@@ -1186,11 +1186,11 @@ public class Expression {
} }
for (char ch : st.toCharArray()) { for (char ch : st.toCharArray()) {
if (!Character.isDigit(ch) if (!Character.isDigit(ch)
// 677e1245-4e58-4979-8794-39e728e84248,会把这种当做number // 677e1245-4e58-4979-8794-39e728e84248, 8e7437904897429e82e52082e1537631会把这种当做number
// && ch != minusSign // && ch != minusSign
&& ch != decimalSeparator && ch != decimalSeparator
&& ch != 'e' // && ch != 'e'
&& ch != 'E' // && ch != 'E'
// && ch != '+') { // && ch != '+') {
) { ) {
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment