Last active
April 3, 2020 18:47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
str value = 'Demo'; | |
//strRFix | |
Info(strRFix(value,7,'0'));// this will info '000Demo' | |
Info(strRFix(value,7)); // this will info ' Demo' // 3 parameter is optional with default value of space | |
//strLFix | |
Info(strLFix(value,7,'0'));//this will info 'Demo000' | |
Info(strLFix(value,7)); //this will info 'Demo ' //3 parameter is optional with default value of space |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment