<< count | String type | endsWith >> |
res = deblank(str) |
a string, a cell of strings or a string array.
a string without trailing whitespace.
deblank removes trailing whitespace.
deblank does not remove all significant whitespace (only characters ' \t\n\r\f\v' removed).
deblank(' Nel Son ')
deblank(" Nel Son ")
deblank([' Nel Son ', char(160)])
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET