Package DE_EPAGES::TLE::API::SpaceFormatter
This handler supports the following formats:
- [space] - add spaces if value is too short, usefull for plaintext output. The first parameter is the length for result string. If the original value is longer then nothing is happen (except: a debug information is printed).
- [-?\d+] - add spaces if value is too short, usefull for plaintext output ( obsolete ).
Example |
#VeryShortString[space;40] => 'VeryShortString ' #VeryShortString[space;-40] => ' VeryShortString' |