Difference between revisions of "INLIST()"

From Lianjapedia
Jump to: navigation, search
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to search a list of expressions
 
Function to search a list of expressions
 
  
 
==Syntax==
 
==Syntax==
 
INLIST(<exp1>,<exp2>[,<exp3>...])
 
INLIST(<exp1>,<exp2>[,<exp3>...])
 
  
 
==See Also==
 
==See Also==
[[AT()]], [[ATNEXT()]], [[LEFT()]], [[LIKE()]], [[LOOKUP()]], [[OCCURS()]], [[RAT()]], [[RIGHT()]], [[RLOOKUP()]], [[STR()]], [[STREXTRACT()]], [[STRTRAN()]], [[STUFF()]], [[SUBSTR()]]
+
[[AT()]], [[ATNEXT()]], [[CHOOSE()]], [[LEFT()]], [[LIKE()]], [[LOOKUP()]], [[OCCURS()]], [[RAT()]], [[RIGHT()]], [[RLOOKUP()]], [[STR()]], [[STREXTRACT()]], [[STRTRAN()]], [[STUFF()]], [[SUBSTR()]]
 
+
  
 
==Description==
 
==Description==
 
The INLIST() function searches a list of expressions and returns a logical true (.T) if the specified expression is found within that list.  The expression to search for is represented by <exp1>.  Expressions following <exp1> make up the list in which the INLIST() function will search.  All the expressions specified must be the same data type: character, numeric, logical, date.
 
The INLIST() function searches a list of expressions and returns a logical true (.T) if the specified expression is found within that list.  The expression to search for is represented by <exp1>.  Expressions following <exp1> make up the list in which the INLIST() function will search.  All the expressions specified must be the same data type: character, numeric, logical, date.
 
  
 
==Example==
 
==Example==
Line 25: Line 21:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:String Data]]
+
[[Category:Formatting Functions]]
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]
[[Category:Expressions and Type Conversion]]
 
[[Category:Expressions and Type Conversion Functions]]
 
 
[[Category:Search Functions]]
 
[[Category:Search Functions]]

Latest revision as of 09:54, 27 March 2018

Purpose

Function to search a list of expressions

Syntax

INLIST(<exp1>,<exp2>[,<exp3>...])

See Also

AT(), ATNEXT(), CHOOSE(), LEFT(), LIKE(), LOOKUP(), OCCURS(), RAT(), RIGHT(), RLOOKUP(), STR(), STREXTRACT(), STRTRAN(), STUFF(), SUBSTR()

Description

The INLIST() function searches a list of expressions and returns a logical true (.T) if the specified expression is found within that list. The expression to search for is represented by <exp1>. Expressions following <exp1> make up the list in which the INLIST() function will search. All the expressions specified must be the same data type: character, numeric, logical, date.

Example

do case
case inlist(cState, "CA", "OR", "WA", "NV")
    cTimezone = "Pacific"
case inlist(cState, "MT", "ID", "WY", "UT", "CO","AZ", "NM")
    cTimezone = "Mountain"
endcase