展开 层次号 标签

      行过滤
        1  示例
            1.1  数值为空(null或empty)
脚本
'#{列1}' == ''
条件
true
最大值
-1
            1.2  数值不为空
脚本
'#{列1}'.length > 0
条件
true
最大值
-1
            1.3  最前面10行
条件
true
最大值
10
            1.4  数字
                1.4.1  数值是数字
脚本
Math.abs(#{列1}) >= 0
条件
true
最大值
-1
                1.4.2  比较数字
脚本
#{列1} != 0 || #{列1} < #{列2}
条件
true
最大值
-1
                1.4.3  比较统计值
脚本
#{列1} < #{列1-均值}
条件
true
最大值
-1
            1.5  时间
                1.5.1  时间点
脚本
'#{时间}' == '2016-05-19 11:34:28'
条件
true
最大值
-1
                1.5.2  匹配时间
脚本
'#{时间}'.startsWith('2016-05-19 09')
条件
true
最大值
-1
                1.5.3  比较时间
脚本
new Date('#{时间}'.replace(/-/g,'/')).getTime()  > new Date('2016/05/19 09:23:12').getTime()
条件
true
最大值
-1
            1.6  字符串
                1.6.1  字串长度
脚本
'#{列1}'.length > 3
条件
true
最大值
-1
                1.6.2  匹配字串
脚本
'#{列1}'.search(/Hello/ig) >= 0
条件
true
最大值
-1
                1.6.3  子串位置
脚本
'#{列1}'.indexOf('Hello') == 3
条件
true
最大值
-1
                1.6.4  特定值
脚本
var array = [ 'A', 'B', 'C', 'D' ];
array.includes('#{列1}')
条件
true
最大值
-1

* 网页可编辑时,链接和控件可能不响应。