FindOneOf()는 제공된 문자 집합의 문자 발견 위치를 찾기 위해 문자열을 검색합니다. The position of the first occurrence of any character from the search set is returned unless a third argument (with a value greater than 1) is supplied.일치 항목이 발견되지 않으면 0이 반환됩니다.
구문:
FindOneOf(text, char_set[, count])
반환 데이터 유형: 정수
인수:
인수
인수
설명
text
원래 문자열입니다.
char_set
text에서 검색할 문자 집합입니다.
count
검색할 문자의 발생 위치를 정의합니다. 예를 들어 값이 2이면 두 번째 발생 항목을 검색합니다.
Example
Result
FindOneOf( 'my example text string', 'et%s')
Returns '4' because ‘e’ is the fourth character in the example string.
FindOneOf( 'my example text string', 'et%s', 3)
Returns '12' because the search is for any of the characters e, t, % or s, and "t" is the third occurrence in position 12 of the example string.
FindOneOf( 'my example text string', '¤%&')
Returns '0' because none of the characters ¤, %, or & exist in the example string.