PADC()
Posted: Tue Mar 10, 2020 8:10 pm
PADC seems to have a bug which shows up if the padding character is something other than a space. For example:
The above lines should print "==hello===" but they actually print " hello==="
Code: Select all
LOCAL lcString as String
lcString="hello"
? PADC(lcString,10,"=")