Constructor()

Namespace ›› System.MfText ›› StringBuilder ›› Methods ››
Parent Previous Next

Constructor()

OutputVar := new MfText.StringBuilder()
OutputVar := new MfText.StringBuilder(capacity)
OutputVar := new MfText.StringBuilder(capacity, maxCapacity)
OutputVar := new MfText.StringBuilder(value)
OutputVar := new MfText.StringBuilder(value, capacity)
OutputVar := new MfText.StringBuilder(value, startIndex, length, capacity)

Constructor()

Initializes a new instance of the StringBuilder class.

Remarks

The string value of this instance is set to empty string, and the capacity is set to the implementation-specific default capacity.

Example

sb := new MfText.StringBuilder()

Constructor(capacity)

Initializes a new instance of the StringBuilder class using the specified capacity.

Parameters

capacity

The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer

Throws

Throws MfArgumentOutOfRangeException if capacity is less than zero.

Remarks

The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.

If capacity is zero, the implementation-specific default capacity is used.

The string value of this instance is set to null. If capacity is zero, the implementation-specific default capacity is used.

If you intend to call the Constructor(value) method by passing in numeric integer string then wrap the in an instance of MfString to ensure the correct overload is called. sb := new MfText.StringBuilder("1000") will call the Constructor(capacity) overload. sb := new MfText.StringBuilder(new MfString("1000")) will call the Constructor(value) overload.  sb := new MfText.StringBuilder("1000.0") will call the Constructor(value) overload.

Example

capacity := 255
sb := new MfText.StringBuilder(capacity)

Constructor(capacity, maxCapacity)

Initializes a new instance of the StringBuilder class that starts with a specified capacity and can grow to a specified maximum.

Parameters

capacity

The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer

maxCapacity

The maximum number of characters the current string can contain.
Can be any type that matches IsInteger or var integer.

Throws

Throws MfArgumentOutOfRangeException if maxCapacity is less than one, capacity is less than zero, or capacity is greater than maxCapacity.

Remarks

The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.

If capacity is zero, the implementation-specific default capacity is used.

The maxCapacity property defines the maximum number of characters that the current instance can hold. Its value is assigned to the MaxCapacity property. If the number of characters to be stored in the current instance exceeds this maxCapacity value, the StringBuilder object does not allocate additional memory, but instead throws an exception.

Example

capacity := 255
maxCapacity := 1024
sb := new MfText.StringBuilder(capacity, maxCapacity)

Constructor(value)

Initializes a new instance of the StringBuilder class using the specified string.

Parameters

value

The string that contains the substring used to initialize the value of this instance. If value is null, the new StringBuilder will contain the empty string.
Can be var number or string or any object that derives from MfObject.

Remarks

If value is null, the new StringBuilder will contain the empty string.

If value is an object then its ToString output is used.

If var integer is passed into Constructor(value) such as sb := new MfText.StringBuilder("1000") it will result in the Constructor(capacity) overload being called. To pass integer var into Constructor(value) first wrap the integer var in instance of MfString as follows sb := new MfText.StringBuilder(new MfString("1000"))

Calling Constructor(value) and passing in a non-integer number is fine such as  sb := new MfText.StringBuilder("1000.0")

Example

initialString := "Initial string for stringbuilder."
sb := new MfText.StringBuilder(initialString)

initialString := new MfString("Initial string for stringbuilder.")
sb := new MfText.StringBuilder(initialString)

Constructor(value, capacity)

Initializes a new instance of the StringBuilder class using the specified string and capacity.

Parameters

value

The string that contains the substring used to initialize the value of this instance. If value is null, the new StringBuilder will contain the empty string.
Can be var number or string or any object that derives from MfObject.

capacity

The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer.

Throws

Throws MfArgumentOutOfRangeException if capacity is less than zero.

Remarks

The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.

If capacity is zero, the implementation-specific default capacity is used.

If value is an object then its ToString output is used.

If var integer is passed into Constructor(value, capacity) such as sb := new MfText.StringBuilder("1000", 255) it will result in the Constructor(capacity, maxCapacity) overload being called. To pass integer var into Constructor(value, capacity) first wrap the integer var in instance of MfString as follows sb :=  new MfText.StringBuilder(new MfString("1000"), 255)

Calling Constructor(value, capacity) and passing in a non-integer number is fine such as  sb := new MfText.StringBuilder("1000.0", 255)

Example

initialString := "Initial string for stringbuilder."
capacity := 255
sb := new MfText.StringBuilder(initialString, capacity)

initialString := new MfString("Initial string for stringbuilder.")
capacity := new MfInteger(255)
sb := new MfText.StringBuilder(initialString, capacity)

Constructor(value, startIndex, length, capacity)

Initializes a new instance of the StringBuilder class from the specified substring and capacity.

Parameters

value

The string that contains the substring used to initialize the value of this instance. If value is null, the new StringBuilder will contain the empty string.
Can be var number or string or any object that derives from MfObject.

startIndex

The position within value where the substring begins.
Can be any type that matches IsInteger or var integer.

length

The number of characters in the substring.
Can be any type that matches IsInteger or var integer.

capacity

The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer.

Throws

Throws MfArgumentOutOfRangeException if capacity is less than zero or startIndex plus length is not a position within value.

Remarks

The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.

If capacity is zero, the implementation-specific default capacity is used.

If value is an object then its ToString output is used.

Example

initialString := "Initial string for stringbuilder."
startIndex := 0
substringLength := 14
capacity := 255
sb := new MfText.StringBuilder(initialString, startIndex, substringLength, capacity)