첫 번째 인수 값이 목록에 있는지 확인합니다. 확인은 각 인수 값에 대해 Equal 를 통해 수행됩니다. 인수 값을 찾으면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
의 유형 <expression>
는 목록의 항목과 일치해야 합니다. 목록의 항목 유형은 미리 알림으로 서로 일치해야 합니다.
목록
in(<parameters>)
매개 변수 | 유형 |
---|---|
문자열 | 문자열 |
부울 | 부울 |
정수 | 정수 |
십진수 | 십진수 |
기간 | 기간 |
DateTime | DateTime |
DateTimeOnly | DateTimeOnly |
목록 | listString |
목록 | listBoolean |
목록 | listInteger |
목록 | listDecimal |
목록 | listDuration |
목록 | listDateTime |
목록 | listDateTimeOnly |
목록 | listDateOnly |
in(<integer>,<listInteger>)
in(<decimal>,<listDecimal>)
in(<string>,<listString>)
in(<boolean>,<listBoolean>)
in(<dateTimeOnly>,<listDateTimeOnly>)
in(<dateTime>,<listDateTime>)
in(<dateOnly>,<listDateOnly>)
in(<duration>,<listDuration>)
부울을 반환합니다.
in(4,[4,5,3,4])
true를 반환합니다.
in(8,[4,5,3,4])
false를 반환합니다.
in(#{ExperiencePlatform.ProfileFieldGroup.profile.person.gender}, ["male"])