Difference between revisions of "StrToBox"
From SCAR Divi Manual
| Line 11: | Line 11: | ||
==Description== | ==Description== | ||
| − | Converts a given [[string]] '''Str'' to a [[TBox]]. | + | Converts a given [[string]] '''Str''' to a [[TBox]]. |
==Example== | ==Example== | ||
Revision as of 14:12, 26 November 2012
Definition
function StrToBox(const Str: string): TBox;
Availability
SCAR Divi 3.37 > Current
Notes
- Before 3.38, the function had some flexibility issues with the input.
Description
Converts a given string Str to a TBox.
Example
begin
WriteLn(BoxToStr(StrToBox('1,2,3,4')));
WriteLn(BoxToStr(StrToBox('1,2 ,3, 4')));
WriteLn(BoxToStr(StrToBox('1,2 ,3, 4)')));
WriteLn(BoxToStr(StrToBox('(1,2 ,3, 4)')));
WriteLn(BoxToStr(StrToBox('(1,2,3,4)')));
end.Output:
(1,2,3,4) (1,2,3,4) (1,2,3,4) (1,2,3,4) (1,2,3,4)