Find string's position
FIND_AFTER_POS returns the position at which the second input string IN2 occurs in the first input string IN1 beginning from the start position P. The result is written into the output variable. If the second input string does not occur in the first input string, the value ZERO is returned.
Input
Input string
Case-sensitive string that is searched for in the input string
Start position of the input string to be searched, where 1 is the first character of the string
Output
Position at which the string searched for is found
if value > 0: position at which the string searched for is found, whereby 1 refers to the first character
if value = 0: search string not found
If this instruction is used with UTF-8 strings, please refer to the notes concerning UTF-8 strings under the data type STRING.
If the strings are longer than the length defined for the input variables (IN1 and IN2) in the declaration field [Type], an error occurs (see sys_bIsCarry for error handling).
if a string applied at the input or output is an invalid string
if a string applied at the input or output is an invalid string
이 펑션 프로그램 시 사용한 모든 입력과 출력 변수는 POU 헤더에서 선언되었습니다. 모든 프로그래밍 언어에 같은 POU 헤더를 사용합니다.
VAR
bStart: BOOL:=FALSE;
sInputString: STRING[32]:='A better life. A better world.';
sSearchString: STRING[32]:='A';
iStartPos: INT:=8;
iFoundPos: INT:=0;
END_VAR
이 예에서 입력 변수 sSearchString 및 sInputString이 선언됩니다. 대신 문자열을 펑션에 직접 입력할 수 있습니다. POU 헤더와 펑션 모두에서 문자열은 따옴표 안에 있을 수 있습니다.
sSearchString은 시작 위치 8에서 시작되는 sInputString에서 검색됩니다. 위치 8 이후의 첫 발생 위치는 iFoundPos에 작성됩니다.
BODY
WORKSPACE
NETWORK_LIST_TYPE := NWTYPELD ;
ACTIVE_NETWORK := 0 ;
END_WORKSPACE
NET_WORK
NETWORK_TYPE := NWTYPELD ;
NETWORK_LABEL := ;
NETWORK_TITLE := ;
NETWORK_HEIGHT := 7 ;
NETWORK_BODY
B(B_F,E_FIND_AFTER_POS!,,19,1,28,7,,?DEN?DIN1?DIN2?DP?AENO?C);
B(B_VARIN,,sInputString,17,3,19,5,);
B(B_VARIN,,sSearchString,17,4,19,6,);
B(B_VARIN,,iStartPos,17,5,19,7,);
B(B_VAROUT,,iFoundPos,28,3,30,5,);
B(B_CONTACT,,bStart,13,2,15,4,);
L(1,3,13,3);
L(15,3,19,3);
L(1,0,1,7);
END_NETWORK_BODY
END_NET_WORK
END_BODY
IF bStart then
iFoundPos:= FIND_AFTER_POS(sInputString, sSearchString);
END_IF;