WMID

The function WMID supplies a substring of a WSTRING.
WMID(STR, LEN, POS) means: Fetch LEN characters from WSTRING STR beginning with the character at position POS.
FUNCTION WMID: WSTRING (255)
VAR_INPUT
STR : WSTRING(255);
LEN : INT;
POS : INT;
END_VAR
Sample in IL:
LD "SUSI"
WMID 2,2
ST Var1 (*Ergebnis ist "US"*)
Sample in ST:
Var1 := WMID ("SUSI",2,2);
Requirements
Development environment | Target platform | PLC library to include |
---|---|---|
TwinCAT v3.0.0 | PC or CX (x86) | Tc2_Standard |