Naga S.
Assuming that target field length is known, then below expression should work:
("0".repeat($target_field_length) + $string_field).substr($string_field.length,$target_field_length)
where:
target_field_length: desired length of the target field.
string_field: input string to which the leading zeros is added.