WREPLACE

The function WREPLACE replaces a substring of a WSTRING with another WSTRING.
WREPLACE (STR1, STR2, L, P) means: Replace L characters from STR1 with STR2 beginning with the Pth character.
FUNCTION WREPLACE: WSTRING (255)
VAR_INPUT
STR1 : WSTRING(255);
STR2 : WSTRING(255);
L : INT;
P : INT;
END_VAR
Sample in IL:
LD "SUXYSI"
WREPLACE "XY",2
ST Var1 (*Ergebnis ist "SKYSI"*)
Sample in ST:
Var1 := WREPLACE ("SUXYSI","K",2,2);
Requirements
Development environment | Target platform | PLC library to include |
---|---|---|
TwinCAT v3.0.0 | PC or CX (x86) | Tc2_Standard |