Pads or truncates a string to a fixed length using characters.
StrFixChars(base-string, pad-string, length)
(s) base-string string to be adjusted to a fixed length.
(s) pad-string appended to base-string if needed to fill out the desired length. If pad-string is null, spaces
are used instead.
(i) length character count of the string.
(s) fixed size string.
This function is identical to StrFix in that it "fixes" the length of a string, either by truncating it on the right, or by appending enough copies of pad-string to achieve the desired length
a = StrFixChars("Henry", " ", 15) b = StrFixChars("Betty", " ", 15) c = StrFixChars("George", " ", 15) Message("Spaced Names", StrCat(a, b, c))
StrInsert, StrFix, StrFixBytes, StrFixBytesL, StrFixCharsL, StrFixLeft, StrOverlay, StrFill