Gets a specific element from a string source.
Function | Group | Execution | Windows | Embedded | Thin Client |
---|---|---|---|---|---|
StrGetElement | String | Synchronous | Supported | Supported | Supported |
StrGetElement( strSource, strDelimiter, numElementNumber )
Returns the element (string value) retrieved from strSource.
Tag Name | Expression |
---|---|
Tag | StrGetElement( "a|b|c", "|", 2 ) // returned value = "b" |
Tag | StrGetElement( "a,b,c", ",", 3 ) // returned value = "c" |