Table of Contents

zfill (Function)

Format

zfill ( string_expression, length_expression)

returns string_expression

Description

Return a right justified string of at least length_expression with zeros appended to the right. it is equivalent to rjust ( string_expression, length_expression, “0”).

See Also

2016/01/01 22:42

History

2.0.0New To Version