Difference between revisions of "TIAToStr"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function TIAToStr(const TIA: TIntArray): AnsiString; </source> ==Availability== SCAR Divi 3.28 > Current ==Description== Conve...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
− | function TIAToStr(const TIA: TIntArray): | + | function TIAToStr(const TIA: TIntArray): string; |
</source> | </source> | ||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Converts a [[TIntArray]] '''TIA''' to a [[ | + | Converts a [[TIntArray]] '''TIA''' to a [[string]] formatted as i1;i2;...;in. You can reverse this process with [[StrToTIA]]. |
==Example== | ==Example== | ||
Line 18: | Line 18: | ||
Output: | Output: | ||
− | + | 1,2,3 | |
==See Also== | ==See Also== |
Latest revision as of 10:27, 30 April 2012
Definition
function TIAToStr(const TIA: TIntArray): string;
Availability
SCAR Divi 3.28 > Current
Description
Converts a TIntArray TIA to a string formatted as i1;i2;...;in. You can reverse this process with StrToTIA.
Example
begin WriteLn(TIAToStr([1, 2, 3])); end.
Output:
1,2,3