BE_ValuesFilterOut

BE_ValuesFilterOut(textToFilter ;filterValues;{caseSensitiveBoolean})



Does the opposite of the FilterValues function : it takes the textToFilter parameter, and removes anything in the filterValues list and returns the remaining values.
 

Parameters:

- textToFilter : The list of values to start with.

- filterValues : The values to remove from textToFilter

- caseSensitiveBoolean : Defaults to True.

Keywords:

Values Filter Out


Version History:

- 2.1 :

- 3.1 : Added the optional caseSensitive parameter.

- 4.0.2 : Renamed from BE_Values_FilterOut

Code Examples:

BE_Values_FilterOut ( "a¶b¶c¶d" ; "b¶d" ) 
Would return "a¶c"

Still need help? Contact Us Contact Us