Difference between revisions of "Array.filteroncolumn()"

From ZCubes Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:
 
|}
 
|}
  
*[1..10,11..20].filteronrow(">4")
+
*[[1..3,4..6],[2.3..4.3,10.1..12.2],[3/5,10/5]].filteroncolumn(">-10")
 +
0.6  2
 +
 
 +
*(([51..70,71..90])~).filteroncolumn(">63")
 
{| class="wikitable"
 
{| class="wikitable"
| 5 || 15  
+
| 64 || 84  
 
|-
 
|-
| 6 || 16  
+
| 65 || 85  
 
|-
 
|-
| 7 || 17
+
| 66 || 86
 
|-
 
|-
|8 ||18
+
| 67 || 87
 
|-
 
|-
|9 || 19
+
| 68 || 88
 
|-
 
|-
|10 ||20
+
|69 || 89
 +
|-
 +
|70 || 90
 
|}
 
|}
  

Latest revision as of 04:05, 23 February 2022

Array.filteroncolumn(Condition, ExtractColumns, FilterOnColumn)

  • ExtractColumns are the columns that are extracted, and filters are applied on FilterOnColumn where condition is satisfied.
  • 1..10.filteroncolumn(">5")
6
7
8
9
10
  • [[1..3,4..6],[2.3..4.3,10.1..12.2],[3/5,10/5]].filteroncolumn(">-10")

0.6 2

  • (([51..70,71..90])~).filteroncolumn(">63")
64 84
65 85
66 86
67 87
68 88
69 89
70 90

See Also