StrStr
Isolates the first occurrence of a character sequence within a string.
| Function | Group | Execution | Windows | Embedded | Thin Client | Mobile Access |
|---|---|---|---|---|---|---|
| StrStr | String | Synchronous | Supported | Supported | Supported | Supported |
Syntax
StrStr( strSource, strCharSequence )
- strSource
- The source string.
- strCharSequence
- The reference string.
Returned value
Returns the string of characters following the first occurrence of a character within the source string.
Examples
| 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” |