Scilab 5.3.3
- Scilab help
- Strings
- ascii
- blanks
- code2str
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
stripblanks
Strips / trims leading and trailing blanks (and tabs) of strings
Calling Sequence
txt=stripblanks(txt[,tabs])
Arguments
- txt
A character string or matrix of character strings
- tabs
if TRUE then tabs are also stripped (default value is FALSE)
Description
stripblanks strips / trims leading and trailing blanks (and tabs) of strings
Examples
a=' 123 '; '!'+a+'!' '!'+stripblanks(a)+'!' a=[' 123 ',' xyz'] strcat(stripblanks(a))
<< strings | Strings | strncpy >> |