~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/strings/strcat.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH strcat 3 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
strcat - catenate character strings
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
txt=strcat(vstr [,strp])
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 15
11
 
vstr
12
 
: vector of strings
13
 
.TP 
14
 
strp
15
 
: string, default value is the emptystr \fV""\fR
16
 
.TP
17
 
txt
18
 
: string
19
 
.SH DESCRIPTION
20
 
 \fVtxt=strcat(vstr)\fR
21
 
catenates character strings : \fVtxt=vstr(1)+...+vstr(n)\fR
22
 
.LP
23
 
\fVtxt=strcat(vstr,strp)\fR 
24
 
returns \fVtxt=strs(1)+strp+...+strp+strs(n)\fR.
25
 
The plus symbol does the same:
26
 
\fV"a"+"b"\fR is the same as \fVstrcat(["a","b"])\fR
27
 
.SH EXAMPLE
28
 
.nf
29
 
strcat(string(1:10),',')
30
 
.fi
31
 
.SH SEE ALSO
32
 
string, strings
33
 
 
34