BFC_SplitText

Description

With the TBFC_SplitText component you have the possibility to split a string (SplitText-property) into seperate strings (SplitArray) and vice-versa. In the delimiter-property you can define the substring where the string will be broken.

Properties

Delimiter   Declaration
property Delimiter: String;

Description
Substring to brake or concatenate .

SplitArray   Declaration
property SplitArray: TStringList;

Description
Substrings which were derived from the string or which will be used to make the string

SplitBlanks   Declaration
property SplitBlanks: Boolean;

Description
This boolean determines if blank substrings will be placed in the SplitArray-property.

SplitText   Declaration
property SplitText: String;

Description
The mainstring which will be broken or which is the concatenated string.

Methods

BreakText   Declaration
procedure BreakText;

Description
Invoking this method will break the string in the SplitText-property to substrings and place them in the SplitArray-property.

MakeText   Declaration
procedure MakeText;

Description
Invoking this method will concatenate the strings in the SplitArray-property and place the result in the SplitText-property

Events

None