comparison doc/interpreter/strings.texi @ 2993:91589ab98e37

[project @ 1997-05-21 21:44:54 by jwe]
author jwe
date Wed, 21 May 1997 21:51:38 +0000
parents ee9582e6668f
children 9c5160c83bd2
comparison
equal deleted inserted replaced
2992:53b38bf1d443 2993:91589ab98e37
149 @deftypefn {Function File} {} strcat (@var{s1}, @var{s2}, @dots{}) 149 @deftypefn {Function File} {} strcat (@var{s1}, @var{s2}, @dots{})
150 Return a string containing all the arguments concatenated. For example, 150 Return a string containing all the arguments concatenated. For example,
151 151
152 @example 152 @example
153 @group 153 @group
154 s = [ "ab"; "cde" ] 154 s = [ "ab"; "cde" ];
155 strcat (s, s, s) 155 strcat (s, s, s)
156
157 @result{} "ab ab ab " 156 @result{} "ab ab ab "
158 "cdecdecde" 157 "cdecdecde"
159 @end group 158 @end group
160 @end example 159 @end example
161 @end deftypefn 160 @end deftypefn