StringHelper:Create ( method-parameters )
|
Method overload syntax
|
Description
|
Create( INPUT chars AS CHARACTER EXTENT )
|
Returns a CHARACTER initialized to the value indicated by an array of characters
|
Create( INPUT chars AS CHARACTER,
INPUT count AS INTEGER ) |
Returns a CHARACTER initialized to the value indicated by a specified character repeated a specified number of times
|
Create( INPUT chars AS CHARACTER EXTENT,
INPUT startIndex AS INTEGER, INPUT length AS INTEGER ) |
Returns a CHARACTER initialized to the value indicated by a specified array of characters, a starting character position within that array, and a length
|
USING Progress.Util.* FROM ASSEMBLY.
DEFINE VARIABLE aString AS CHARACTER NO-UNDO. aString = StringHelper:Create( "A", 7 ). Display aString. |