File: strcat.man

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (34 lines) | stat: -rw-r--r-- 637 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.TH strcat 3 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
strcat - catenate character strings
.SH CALLING SEQUENCE
.nf
txt=strcat(vstr [,strp])
.fi
.SH PARAMETERS
.TP 15
vstr
: vector of strings
.TP 
strp
: string, default value is the emptystr \fV""\fR
.TP
txt
: string
.SH DESCRIPTION
 \fVtxt=strcat(vstr)\fR
catenates character strings : \fVtxt=vstr(1)+...+vstr(n)\fR
.LP
\fVtxt=strcat(vstr,strp)\fR 
returns \fVtxt=strs(1)+strp+...+strp+strs(n)\fR.
The plus symbol does the same:
\fV"a"+"b"\fR is the same as \fVstrcat(["a","b"])\fR
.SH EXAMPLE
.nf
strcat(string(1:10),',')
.fi
.SH SEE ALSO
string, strings