Isolates the first occurrence of a character sequence within a string.
Function | Group | Execution | Windows | Embedded | Thin Client |
---|---|---|---|---|---|
StrStr | String | Synchronous | Supported | Supported | Supported |
StrStr( strSource, strCharSequence )
Returns the string of characters following the first occurrence of a character within the source string.
Tag Name | Expression |
---|---|
Tag | StrStr( "Studio version 7.0", "i" ) // Returned value = "io version 7.0" |
Tag | StrStr( "Technical Reference", "n" ) // Returned value ="nical Reference" |