行表达式 | isNaN(#{某列} - 1) |
行表达式 | #{数字列1} != 0 || #{数字列1} < #{数字列2} |
行表达式 | #{数字列} < #{数字列-均值} |
行表达式 | if (#{时间列} != null)
new Date(#{时间列}.getTime()
else
-1; |
行表达式 | #{时间列} == '2016-05-19 11:34:28' |
行表达式 | if (#{时间列} != null)
#{时间列}.startsWith('2016-05-19 09')
else
undefined; |
行表达式 | if (#{时间列} != null)
new Date(#{时间列}).getTime() > new Date('2016/05/19 09:23:12').getTime()
else
undefined; |
行表达式 | function formatDate(date) {
var y = date.getFullYear();
var m = date.getMonth() + 1;
m = m < 10 ? ('0' + m) : m;
var d = date.getDate();
d = d < 10 ? ('0' + d) : d;
var h =date.getHours();
h = h < 10 ? ('0' + h) : h;
var M =date.getMinutes();
M = M < 10 ? ('0' + M) : M;
var s =date.getSeconds();
s = s < 10 ? ('0' + s) : s;
return y + '-' + m + '-' + d + ' ' + h + ':' + M + ':' + s;
}
if (#{时间列} != null)
formatDate(new Date(#{时间列}));
else
null; |
行表达式 | if (#{时间列} != null)
new Date(#{时间列}).getDay() == 0
else
undefined; |
行表达式 | #{字符串列} == '' |
行表达式 | #{字符串列} != null |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.length
else
-1 |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.search(/昔去雪如花/ig)
else
-1 |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.indexOf('今来花似雪')
else
-1 |
行表达式 | #{字符串列} === '只恐夜深花睡去' |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.replace("敲门", "推门");
else
null |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.replace(/怨年华/g, "鸟惊心");
else
null |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.startsWith('君不见')
else
undefined |
行表达式 | if ( #{字符串列} != null )
#{字符串列}.endsWith('需尽欢')
else
undefined |
行表达式 | var array = [ 'A', 'B', 'C', 'D' ];
array.includes(#{字符串列}) |