[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Appends the specified number of UTF-8 codepoints to the end of a string.
Source position: lazutf8.pas line 145
function UTF8PadRight( |
const S: string; |
const N: Integer; |
const AUtf8Char: string = #32 |
):string; |
S |
|
Original string to modify in the function. |
N |
|
Number of codepoints desired in the modified string. |
AUtf8Char |
|
Codepoint to append to the string value. |
Updated value for the string.
UTF8PadRight is used to append the specified number of UTF-8 codepoints to the end of a string. The default value for AUtf8Char is #32 ([SPACE]), but can contain any valid UTF-8 codepoint (1 to 4 bytes). UTF8PadRight calls Utf8AddCharR to create the return value for the function.
Version 4.0 | Generated 2025-05-03 | Home |