Mercurial > hg > octave-max
annotate doc/interpreter/strings.txi @ 12581:c8be316f9543
Group commonly used isXXX functions together in documentation.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Wed, 06 Apr 2011 20:06:45 -0700 |
parents | fd0a3ac60b0e |
children | 5820f8ce683e |
rev | line source |
---|---|
11523 | 1 @c Copyright (C) 1996-2011 John W. Eaton |
7018 | 2 @c |
3 @c This file is part of Octave. | |
4 @c | |
5 @c Octave is free software; you can redistribute it and/or modify it | |
6 @c under the terms of the GNU General Public License as published by the | |
7 @c Free Software Foundation; either version 3 of the License, or (at | |
8 @c your option) any later version. | |
9 @c | |
10 @c Octave is distributed in the hope that it will be useful, but WITHOUT | |
11 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 @c for more details. | |
14 @c | |
15 @c You should have received a copy of the GNU General Public License | |
16 @c along with Octave; see the file COPYING. If not, see | |
17 @c <http://www.gnu.org/licenses/>. | |
3294 | 18 |
4167 | 19 @node Strings |
3294 | 20 @chapter Strings |
21 @cindex strings | |
22 @cindex character strings | |
23 @opindex " | |
24 @opindex ' | |
25 | |
26 A @dfn{string constant} consists of a sequence of characters enclosed in | |
27 either double-quote or single-quote marks. For example, both of the | |
28 following expressions | |
29 | |
30 @example | |
31 @group | |
32 "parrot" | |
33 'parrot' | |
34 @end group | |
35 @end example | |
36 | |
37 @noindent | |
38 represent the string whose contents are @samp{parrot}. Strings in | |
39 Octave can be of any length. | |
40 | |
41 Since the single-quote mark is also used for the transpose operator | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
42 (@pxref{Arithmetic Ops}) but double-quote marks have no other purpose in Octave, |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
43 it is best to use double-quote marks to denote strings. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
44 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
45 Strings can be concatenated using the notation for defining matrices. For |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
46 example, the expression |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
47 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
48 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
49 [ "foo" , "bar" , "baz" ] |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
50 @end example |
3294 | 51 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
52 @noindent |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
53 produces the string whose contents are @samp{foobarbaz}. @xref{Numeric Data |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
54 Types}, for more information about creating matrices. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
55 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
56 @menu |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11143
diff
changeset
|
57 * Escape Sequences in String Constants:: |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
58 * Character Arrays:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
59 * Creating Strings:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
60 * Comparing Strings:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
61 * Manipulating Strings:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
62 * String Conversions:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
63 * Character Class Functions:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
64 @end menu |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
65 |
11257
8d4c57258523
fix some menu problems in the manual
John W. Eaton <jwe@octave.org>
parents:
11255
diff
changeset
|
66 @node Escape Sequences in String Constants |
8d4c57258523
fix some menu problems in the manual
John W. Eaton <jwe@octave.org>
parents:
11255
diff
changeset
|
67 @section Escape Sequences in String Constants |
6554 | 68 @cindex escape sequence notation |
69 In double-quoted strings, the backslash character is used to introduce | |
6623 | 70 @dfn{escape sequences} that represent other characters. For example, |
6554 | 71 @samp{\n} embeds a newline character in a double-quoted string and |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
72 @samp{\"} embeds a double quote character. In single-quoted strings, backslash |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
73 is not a special character. Here is an example showing the difference: |
3294 | 74 |
6554 | 75 @example |
6556 | 76 @group |
6554 | 77 toascii ("\n") |
6570 | 78 @result{} 10 |
6554 | 79 toascii ('\n') |
6570 | 80 @result{} [ 92 110 ] |
6556 | 81 @end group |
6554 | 82 @end example |
3294 | 83 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
84 Here is a table of all the escape sequences used in Octave (within |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
85 double quoted strings). They are the same as those used in the C |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
86 programming language. |
3294 | 87 |
88 @table @code | |
89 @item \\ | |
90 Represents a literal backslash, @samp{\}. | |
91 | |
92 @item \" | |
93 Represents a literal double-quote character, @samp{"}. | |
94 | |
95 @item \' | |
96 Represents a literal single-quote character, @samp{'}. | |
97 | |
3893 | 98 @item \0 |
4946 | 99 Represents the ``nul'' character, control-@@, ASCII code 0. |
3893 | 100 |
3294 | 101 @item \a |
102 Represents the ``alert'' character, control-g, ASCII code 7. | |
103 | |
104 @item \b | |
105 Represents a backspace, control-h, ASCII code 8. | |
106 | |
107 @item \f | |
108 Represents a formfeed, control-l, ASCII code 12. | |
109 | |
110 @item \n | |
111 Represents a newline, control-j, ASCII code 10. | |
112 | |
113 @item \r | |
114 Represents a carriage return, control-m, ASCII code 13. | |
115 | |
116 @item \t | |
117 Represents a horizontal tab, control-i, ASCII code 9. | |
118 | |
119 @item \v | |
120 Represents a vertical tab, control-k, ASCII code 11. | |
121 | |
122 @c We don't do octal or hex this way yet. | |
123 @c | |
124 @c @item \@var{nnn} | |
125 @c Represents the octal value @var{nnn}, where @var{nnn} are one to three | |
126 @c digits between 0 and 7. For example, the code for the ASCII ESC | |
127 @c (escape) character is @samp{\033}.@refill | |
128 @c | |
129 @c @item \x@var{hh}@dots{} | |
130 @c Represents the hexadecimal value @var{hh}, where @var{hh} are hexadecimal | |
131 @c digits (@samp{0} through @samp{9} and either @samp{A} through @samp{F} or | |
132 @c @samp{a} through @samp{f}). Like the same construct in @sc{ansi} C, | |
133 @c the escape | |
134 @c sequence continues until the first non-hexadecimal digit is seen. However, | |
135 @c using more than two hexadecimal digits produces undefined results. (The | |
136 @c @samp{\x} escape sequence is not allowed in @sc{posix} @code{awk}.)@refill | |
137 @end table | |
138 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
139 In a single-quoted string there is only one escape sequence: you may insert a |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
140 single quote character using two single quote characters in succession. For |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
141 example, |
3294 | 142 |
143 @example | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
144 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
145 'I can''t escape' |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
146 @result{} I can't escape |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
147 @end group |
3294 | 148 @end example |
149 | |
150 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
151 @node Character Arrays |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
152 @section Character Arrays |
3294 | 153 |
6623 | 154 The string representation used by Octave is an array of characters, so |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
155 internally the string "dddddddddd" is actually a row vector of length 10 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
156 containing the value 100 in all places (100 is the ASCII code of "d"). This |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9036
diff
changeset
|
157 lends itself to the obvious generalization to character matrices. Using a |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
158 matrix of characters, it is possible to represent a collection of same-length |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
159 strings in one variable. The convention used in Octave is that each row in a |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
160 character matrix is a separate string, but letting each column represent a |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
161 string is equally possible. |
6623 | 162 |
163 The easiest way to create a character matrix is to put several strings | |
164 together into a matrix. | |
165 | |
166 @example | |
167 collection = [ "String #1"; "String #2" ]; | |
168 @end example | |
169 | |
170 @noindent | |
171 This creates a 2-by-9 character matrix. | |
172 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
173 The function @code{ischar} can be used to test if an object is a character |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
174 matrix. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
175 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
176 @DOCSTRING(ischar) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
177 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
178 To test if an object is a string (i.e., a character vector and not a character |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
179 matrix) you can use the @code{ischar} function in combination with the |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
180 @code{isvector} function as in the following example: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
181 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
182 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
183 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
184 ischar(collection) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
185 @result{} ans = 1 |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
186 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
187 ischar(collection) && isvector(collection) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
188 @result{} ans = 0 |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8372
diff
changeset
|
189 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
190 ischar("my string") && isvector("my string") |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
191 @result{} ans = 1 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
192 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
193 @end example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
194 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
195 One relevant question is, what happens when a character matrix is |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
196 created from strings of different length. The answer is that Octave |
6623 | 197 puts blank characters at the end of strings shorter than the longest |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
198 string. It is possible to use a different character than the |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
199 blank character using the @code{string_fill_char} function. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
200 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
201 @DOCSTRING(string_fill_char) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
202 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
203 This shows a problem with character matrices. It simply isn't possible to |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
204 represent strings of different lengths. The solution is to use a cell array of |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
205 strings, which is described in @ref{Cell Arrays of Strings}. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
206 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
207 @node Creating Strings |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
208 @section Creating Strings |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
209 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
210 The easiest way to create a string is, as illustrated in the introduction, |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
211 to enclose a text in double-quotes or single-quotes. It is however |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
212 possible to create a string without actually writing a text. The |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
213 function @code{blanks} creates a string of a given length consisting |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
214 only of blank characters (ASCII code 32). |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
215 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
216 @DOCSTRING(blanks) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
217 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
218 @menu |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
219 * Concatenating Strings:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
220 * Conversion of Numerical Data to Strings:: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
221 @end menu |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
222 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
223 @node Concatenating Strings |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
224 @subsection Concatenating Strings |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
225 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
226 It has been shown above that strings can be concatenated using matrix notation |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
227 (@pxref{Strings}, @ref{Character Arrays}). Apart from that, there are several |
8372
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8351
diff
changeset
|
228 functions to concatenate string objects: @code{char}, |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
229 @code{strvcat}, @code{strcat} and @code{cstrcat}. In addition, the general |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
230 purpose concatenation functions can be used: see @ref{doc-cat,,cat}, |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
231 @ref{doc-horzcat,,horzcat} and @ref{doc-vertcat,,vertcat}. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
232 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
233 @itemize @bullet |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
234 @item All string concatenation functions except @code{cstrcat} |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
235 convert numerical input into character data by taking the corresponding ASCII |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
236 character for each element, as in the following example: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
237 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
238 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
239 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
240 char([98, 97, 110, 97, 110, 97]) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
241 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
242 banana |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
243 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
244 @end example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
245 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
246 @item |
8372
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8351
diff
changeset
|
247 @code{char} and @code{strvcat} |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
248 concatenate vertically, while @code{strcat} and @code{cstrcat} concatenate |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
249 horizontally. For example: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
250 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
251 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
252 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
253 char("an apple", "two pears") |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
254 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
255 an apple |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
256 two pears |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
257 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
258 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
259 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
260 strcat("oc", "tave", " is", " good", " for you") |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
261 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
262 octave is good for you |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
263 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
264 @end example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
265 |
8372
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8351
diff
changeset
|
266 @item @code{char} generates an empty row in the output |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
267 for each empty string in the input. @code{strvcat}, on the other hand, |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
268 eliminates empty strings. |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
269 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
270 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
271 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
272 char("orange", "green", "", "red") |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
273 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
274 orange |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
275 green |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
276 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
277 red |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
278 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
279 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
280 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
281 strvcat("orange", "green", "", "red") |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
282 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
283 orange |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
284 green |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
285 red |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
286 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
287 @end example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
288 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
289 @item All string concatenation functions except @code{cstrcat} also accept cell |
8372
8dff9cba15fe
move str2mat to deprecated and make it a simple wrapper around char
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8351
diff
changeset
|
290 array data (@pxref{Cell Arrays}). @code{char} and |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
291 @code{strvcat} convert cell arrays into character arrays, while @code{strcat} |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
292 concatenates within the cells of the cell arrays: |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
293 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
294 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
295 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
296 char(@{"red", "green", "", "blue"@}) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
297 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
298 red |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
299 green |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
300 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
301 blue |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
302 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
303 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
304 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
305 strcat(@{"abc"; "ghi"@}, @{"def"; "jkl"@}) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
306 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
307 @{ |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
308 [1,1] = abcdef |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
309 [2,1] = ghijkl |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
310 @} |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
311 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
312 @end example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
313 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
314 @item @code{strcat} removes trailing white space in the arguments (except |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
315 within cell arrays), while @code{cstrcat} leaves white space untouched. Both |
9036
58604c45ca74
Cleanup of data types related documentation
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
316 kinds of behavior can be useful as can be seen in the examples: |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
317 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
318 @example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
319 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
320 strcat(["dir1";"directory2"], ["/";"/"], ["file1";"file2"]) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
321 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
322 dir1/file1 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
323 directory2/file2 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
324 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
325 @group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
326 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
327 cstrcat(["thirteen apples"; "a banana"], [" 5$";" 1$"]) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
328 @result{} ans = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
329 thirteen apples 5$ |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
330 a banana 1$ |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
331 @end group |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
332 @end example |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
333 |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
334 Note that in the above example for @code{cstrcat}, the white space originates |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
335 from the internal representation of the strings in a string array |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
336 (@pxref{Character Arrays}). |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
337 @end itemize |
6623 | 338 |
4358 | 339 @DOCSTRING(char) |
340 | |
6502 | 341 @DOCSTRING(strvcat) |
342 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
343 @DOCSTRING(strcat) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
344 |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7984
diff
changeset
|
345 @DOCSTRING(cstrcat) |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7984
diff
changeset
|
346 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
347 @node Conversion of Numerical Data to Strings |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
348 @subsection Conversion of Numerical Data to Strings |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
349 Apart from the string concatenation functions (@pxref{Concatenating Strings}) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
350 which cast numerical data to the corresponding ASCII characters, there are |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
351 several functions that format numerical data as strings. @code{mat2str} and |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
352 @code{num2str} convert real or complex matrices, while @code{int2str} converts |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
353 integer matrices. @code{int2str} takes the real part of complex values and |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
354 round fractional values to integer. A more flexible way to format numerical |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
355 data as strings is the @code{sprintf} function (@pxref{Formatted Output}, |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
356 @ref{doc-sprintf}). |
4535 | 357 |
6502 | 358 @DOCSTRING(mat2str) |
359 | |
360 @DOCSTRING(num2str) | |
3294 | 361 |
6623 | 362 @DOCSTRING(int2str) |
363 | |
364 @node Comparing Strings | |
365 @section Comparing Strings | |
366 | |
8828 | 367 Since a string is a character array, comparisons between strings work |
368 element by element as the following example shows: | |
6623 | 369 |
370 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9036
diff
changeset
|
371 @group |
6623 | 372 GNU = "GNU's Not UNIX"; |
373 spaces = (GNU == " ") | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
374 @result{} spaces = |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
375 0 0 0 0 0 1 0 0 0 1 0 0 0 0 |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9036
diff
changeset
|
376 @end group |
6623 | 377 @end example |
378 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
379 @noindent To determine if two strings are identical it is necessary to use the |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
380 @code{strcmp} function. It compares complete strings and is case |
9036
58604c45ca74
Cleanup of data types related documentation
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
381 sensitive. @code{strncmp} compares only the first @code{N} characters (with |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
382 @code{N} given as a parameter). @code{strcmpi} and @code{strncmpi} are the |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
383 corresponding functions for case-insensitive comparison. |
6623 | 384 |
385 @DOCSTRING(strcmp) | |
386 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
387 @DOCSTRING(strncmp) |
6623 | 388 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
389 @DOCSTRING(strcmpi) |
6623 | 390 |
391 @DOCSTRING(strncmpi) | |
392 | |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
393 @DOCSTRING(validatestring) |
7984
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7639
diff
changeset
|
394 |
6623 | 395 @node Manipulating Strings |
396 @section Manipulating Strings | |
397 | |
398 Octave supports a wide range of functions for manipulating strings. | |
399 Since a string is just a matrix, simple manipulations can be accomplished | |
9036
58604c45ca74
Cleanup of data types related documentation
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
400 using standard operators. The following example shows how to replace |
6623 | 401 all blank characters with underscores. |
402 | |
403 @example | |
9036
58604c45ca74
Cleanup of data types related documentation
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
404 @group |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9036
diff
changeset
|
405 quote = ... |
7081 | 406 "First things first, but not necessarily in that order"; |
6623 | 407 quote( quote == " " ) = "_" |
7081 | 408 @result{} quote = |
409 First_things_first,_but_not_necessarily_in_that_order | |
9036
58604c45ca74
Cleanup of data types related documentation
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
410 @end group |
6623 | 411 @end example |
412 | |
413 For more complex manipulations, such as searching, replacing, and | |
7001 | 414 general regular expressions, the following functions come with Octave. |
3294 | 415 |
3361 | 416 @DOCSTRING(deblank) |
3294 | 417 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8442
diff
changeset
|
418 @DOCSTRING(strtrim) |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8442
diff
changeset
|
419 |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
420 @DOCSTRING(strtrunc) |
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
421 |
3361 | 422 @DOCSTRING(findstr) |
3294 | 423 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8442
diff
changeset
|
424 @DOCSTRING(strchr) |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8442
diff
changeset
|
425 |
3361 | 426 @DOCSTRING(index) |
3294 | 427 |
3361 | 428 @DOCSTRING(rindex) |
3294 | 429 |
6502 | 430 @DOCSTRING(strfind) |
431 | |
432 @DOCSTRING(strmatch) | |
433 | |
434 @DOCSTRING(strtok) | |
435 | |
8879
1beaaffb3c1f
document strsplit, not split
John W. Eaton <jwe@octave.org>
parents:
8828
diff
changeset
|
436 @DOCSTRING(strsplit) |
3294 | 437 |
11143
195cffc2d0a3
strings.txi: @DOCSTRING additions.
Ben Abbott <bpabbott@mac.com>
parents:
11103
diff
changeset
|
438 @DOCSTRING(strread) |
195cffc2d0a3
strings.txi: @DOCSTRING additions.
Ben Abbott <bpabbott@mac.com>
parents:
11103
diff
changeset
|
439 |
3361 | 440 @DOCSTRING(strrep) |
3294 | 441 |
3361 | 442 @DOCSTRING(substr) |
3294 | 443 |
5582 | 444 @DOCSTRING(regexp) |
445 | |
446 @DOCSTRING(regexpi) | |
447 | |
6549 | 448 @DOCSTRING(regexprep) |
449 | |
7984
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7639
diff
changeset
|
450 @DOCSTRING(regexptranslate) |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7639
diff
changeset
|
451 |
11103
d4fc294a19e4
include untabify docstring in the manual
John W. Eaton <jwe@octave.org>
parents:
10828
diff
changeset
|
452 @DOCSTRING(untabify) |
d4fc294a19e4
include untabify docstring in the manual
John W. Eaton <jwe@octave.org>
parents:
10828
diff
changeset
|
453 |
4167 | 454 @node String Conversions |
3294 | 455 @section String Conversions |
456 | |
6623 | 457 Octave supports various kinds of conversions between strings and |
8351
4d78baf20ded
improve string documentation
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8347
diff
changeset
|
458 numbers. As an example, it is possible to convert a string containing |
6623 | 459 a hexadecimal number to a floating point number. |
460 | |
461 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9036
diff
changeset
|
462 @group |
6623 | 463 hex2dec ("FF") |
464 @result{} ans = 255 | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9036
diff
changeset
|
465 @end group |
6623 | 466 @end example |
467 | |
3361 | 468 @DOCSTRING(bin2dec) |
3294 | 469 |
3361 | 470 @DOCSTRING(dec2bin) |
3294 | 471 |
3361 | 472 @DOCSTRING(dec2hex) |
3294 | 473 |
3361 | 474 @DOCSTRING(hex2dec) |
3294 | 475 |
3920 | 476 @DOCSTRING(dec2base) |
477 | |
478 @DOCSTRING(base2dec) | |
479 | |
7639
b2fbb393a072
Add the num2hex and hex2num functions
David Bateman <dbateman@free.fr>
parents:
7081
diff
changeset
|
480 @DOCSTRING(num2hex) |
b2fbb393a072
Add the num2hex and hex2num functions
David Bateman <dbateman@free.fr>
parents:
7081
diff
changeset
|
481 |
b2fbb393a072
Add the num2hex and hex2num functions
David Bateman <dbateman@free.fr>
parents:
7081
diff
changeset
|
482 @DOCSTRING(hex2num) |
b2fbb393a072
Add the num2hex and hex2num functions
David Bateman <dbateman@free.fr>
parents:
7081
diff
changeset
|
483 |
6623 | 484 @DOCSTRING(str2double) |
3920 | 485 |
6623 | 486 @DOCSTRING(strjust) |
6502 | 487 |
3361 | 488 @DOCSTRING(str2num) |
3294 | 489 |
3361 | 490 @DOCSTRING(toascii) |
3294 | 491 |
3361 | 492 @DOCSTRING(tolower) |
3294 | 493 |
3361 | 494 @DOCSTRING(toupper) |
3294 | 495 |
3428 | 496 @DOCSTRING(do_string_escapes) |
497 | |
3361 | 498 @DOCSTRING(undo_string_escapes) |
3294 | 499 |
4167 | 500 @node Character Class Functions |
3294 | 501 @section Character Class Functions |
502 | |
503 Octave also provides the following character class test functions | |
504 patterned after the functions in the standard C library. They all | |
505 operate on string arrays and return matrices of zeros and ones. | |
506 Elements that are nonzero indicate that the condition was true for the | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
9209
diff
changeset
|
507 corresponding character in the string array. For example: |
3294 | 508 |
509 @example | |
510 @group | |
511 isalpha ("!Q@@WERT^Y&") | |
512 @result{} [ 0, 1, 0, 1, 1, 1, 1, 0, 1, 0 ] | |
513 @end group | |
514 @end example | |
515 | |
3361 | 516 @DOCSTRING(isalnum) |
3294 | 517 |
3361 | 518 @DOCSTRING(isalpha) |
519 | |
6549 | 520 @DOCSTRING(isletter) |
521 | |
3361 | 522 @DOCSTRING(islower) |
3294 | 523 |
12581
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
524 @DOCSTRING(isupper) |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
525 |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
526 @DOCSTRING(isdigit) |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
527 |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
528 @DOCSTRING(isxdigit) |
3294 | 529 |
3361 | 530 @DOCSTRING(ispunct) |
3294 | 531 |
3361 | 532 @DOCSTRING(isspace) |
3294 | 533 |
12581
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
534 @DOCSTRING(iscntrl) |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
535 |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
536 @DOCSTRING(isgraph) |
3294 | 537 |
12581
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
538 @DOCSTRING(isprint) |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
539 |
c8be316f9543
Group commonly used isXXX functions together in documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
540 @DOCSTRING(isascii) |
7984
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7639
diff
changeset
|
541 |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7639
diff
changeset
|
542 @DOCSTRING(isstrprop) |