Skip to content

Instantly share code, notes, and snippets.

@pawandeep55
Last active April 3, 2020 18:47
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