Difference between revisions of "Array.except()"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "Using except() function, you can exclude few elements from an original array, by mentioning in the arguments section, to get a new array as output. ==Examples== 1. a=1..5@SI...")
 
 
Line 1: Line 1:
 +
*[[ Z3 | << Z3 Home ]]
 +
*[[ Z%5E3_Language_Documentation | Z3 Language Documentation]]
 +
*[[ Z%5E3_Array_Manipulation_Member_Functions | Listing of Z3 Array Manipulation Member Functions]]
 +
 +
 +
 
Using except() function, you can exclude few elements from an original array, by mentioning in the arguments section, to get a new array as output.
 
Using except() function, you can exclude few elements from an original array, by mentioning in the arguments section, to get a new array as output.
  

Latest revision as of 06:00, 23 May 2020


Using except() function, you can exclude few elements from an original array, by mentioning in the arguments section, to get a new array as output.

Examples

1.

a=1..5@SIN
a.except(SIN(4))

-->Displays all the SIN VALUES FROM 1 to 5 as output, excluding the SIN(4) value.
0.8414709848078965 0.9092974268256817 0.1411200080598672 -0.9589242746631385


2.

a=["Mango","Grapes",67,8,"Orange","Banana",100]
a.except("Grapes",67,100)

-->Displays output as: Mango 8 Orange Banana


See Also