PadC Function (Usual, Long, String) | |
Pad character, numeric, and date values with fill characters on both the right and left.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION PadC(
uValue AS USUAL,
nLength AS LONG,
cFillChar AS STRING
) AS STRING
public static string PadC(
Usual uValue,
int nLength,
[DefaultParameterValueAttribute("", 0)] string cFillChar
)
Request Example
View SourceParameters
- uValue
- Type: Usual
A character, numeric, or date value to pad with a fill character. - nLength
- Type: Long
The length of the string to return. - cFillChar
- Type: String
The character with which to pad uValue.
The default is a space character.
Return Value
Type:
String
A string containing
uValue and padded with
cFillChar to a total length of
nLength.
If the length of
uValue exceeds
nLength, Pad() truncates cPaddedString to
nLength.
Remarks
PadC is the same as Pad() except that PadC() centers uValue within nLength and adds fill characters on both the left and right sides.
For more information, see Pad().
PadC() is the inverse of AllTrim(), which trims both leading and trailing space from strings.
Examples See Also