|
|
|
|
- Reason
- Correction
- Example
- Extracting part of a character string
Error 532: The size of the string to extract must be strictly positive
You are using the operators for string extraction ([[ or ]]). The size of the string to extract must be positive. Modify the value for the size of the string to extract. Extracting part of a character string Code triggering the error
sString is string ="WEBDEV is great" Trace(sString[[1 ON 0]])
Possible correction Modify the extracted value in order for the size of the extracted string to be positive.
sString is string ="WEBDEV is great" Trace(sString[[1 ON 5]])
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|