Copies a defined section of a larger string.
Function | Group | Execution | Windows | Embedded | Thin Client |
---|---|---|---|---|---|
NCopy | String | Synchronous | Supported | Supported | Supported |
NCopy( strSource, numStartChar, numQtdChar )
Returns a string that is part of the source string (as defined by the function).
Tag Name | Expression |
---|---|
Tag | NCopy( "Studio version 7.0", 7, 7 ) // Returned value = "version" |
Tag | NCopy( "Technical Reference", 0, 9 ) // Returned value = "Technical" |