提交 ffe4ba7b authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Use proper regular expression in check for numeric format

上级 8f4a6aa9
......@@ -188,7 +188,9 @@ function resortTable(link) {
var td = rows[i].cells[column];
if (!isNullCell(td)) {
var x = getInnerText(td);
if (!x.match(/^[\d\.]+$/)) {
// H2 does not return numeric values with leading +, but may return
// values in scientific notation
if (!x.match(/^\-?\d*\.?\d+(?:[Ee][\+\-]?\d+)?$/)) {
sortNumeric = false;
break;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论