Mercurial > emacs
annotate lispref/strings.texi @ 12215:2f1f03964f08
(status_notify): Undo May 18 change.
Set update_tick at the beginning not at end.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 14 Jun 1995 14:10:27 +0000 |
parents | a6eb5f12b0f3 |
children | 586e3ea81792 |
rev | line source |
---|---|
6550 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | |
4 @c See the file elisp.texi for copying conditions. | |
5 @setfilename ../info/strings | |
6 @node Strings and Characters, Lists, Numbers, Top | |
7 @comment node-name, next, previous, up | |
8 @chapter Strings and Characters | |
9 @cindex strings | |
10 @cindex character arrays | |
11 @cindex characters | |
12 @cindex bytes | |
13 | |
14 A string in Emacs Lisp is an array that contains an ordered sequence | |
15 of characters. Strings are used as names of symbols, buffers, and | |
16 files, to send messages to users, to hold text being copied between | |
17 buffers, and for many other purposes. Because strings are so important, | |
18 Emacs Lisp has many functions expressly for manipulating them. Emacs | |
19 Lisp programs use strings more often than individual characters. | |
20 | |
21 @xref{Strings of Events}, for special considerations for strings of | |
22 keyboard character events. | |
23 | |
24 @menu | |
25 * Basics: String Basics. Basic properties of strings and characters. | |
26 * Predicates for Strings:: Testing whether an object is a string or char. | |
27 * Creating Strings:: Functions to allocate new strings. | |
28 * Text Comparison:: Comparing characters or strings. | |
29 * String Conversion:: Converting characters or strings and vice versa. | |
30 * Formatting Strings:: @code{format}: Emacs's analog of @code{printf}. | |
31 * Character Case:: Case conversion functions. | |
32 * Case Table:: Customizing case conversion. | |
33 @end menu | |
34 | |
35 @node String Basics | |
36 @section String and Character Basics | |
37 | |
38 Strings in Emacs Lisp are arrays that contain an ordered sequence of | |
39 characters. Characters are represented in Emacs Lisp as integers; | |
40 whether an integer was intended as a character or not is determined only | |
41 by how it is used. Thus, strings really contain integers. | |
42 | |
43 The length of a string (like any array) is fixed and independent of | |
44 the string contents, and cannot be altered. Strings in Lisp are | |
45 @emph{not} terminated by a distinguished character code. (By contrast, | |
46 strings in C are terminated by a character with @sc{ASCII} code 0.) | |
47 This means that any character, including the null character (@sc{ASCII} | |
48 code 0), is a valid element of a string.@refill | |
49 | |
50 Since strings are considered arrays, you can operate on them with the | |
51 general array functions. (@xref{Sequences Arrays Vectors}.) For | |
52 example, you can access or change individual characters in a string | |
53 using the functions @code{aref} and @code{aset} (@pxref{Array | |
54 Functions}). | |
55 | |
56 Each character in a string is stored in a single byte. Therefore, | |
57 numbers not in the range 0 to 255 are truncated when stored into a | |
58 string. This means that a string takes up much less memory than a | |
59 vector of the same length. | |
60 | |
61 Sometimes key sequences are represented as strings. When a string is | |
62 a key sequence, string elements in the range 128 to 255 represent meta | |
63 characters (which are extremely large integers) rather than keyboard | |
64 events in the range 128 to 255. | |
65 | |
66 Strings cannot hold characters that have the hyper, super or alt | |
67 modifiers; they can hold @sc{ASCII} control characters, but no other | |
68 control characters. They do not distinguish case in @sc{ASCII} control | |
69 characters. @xref{Character Type}, for more information about | |
70 representation of meta and other modifiers for keyboard input | |
71 characters. | |
72 | |
12098 | 73 Strings are useful for holding regular expressions. You can also |
74 match regular expressions against strings (@pxref{Regexp Search}). The | |
75 functions @code{match-string} (@pxref{Simple Match Data}) and | |
76 @code{replace-match} (@pxref{Replacing Match}) are useful for | |
77 decomposing and modifying strings based on regular expression matching. | |
78 | |
6550 | 79 Like a buffer, a string can contain text properties for the characters |
80 in it, as well as the characters themselves. @xref{Text Properties}. | |
12098 | 81 All the Lisp primitives that copy text from strings to buffers or other |
82 strings also copy the properties of the characters being copied. | |
6550 | 83 |
84 @xref{Text}, for information about functions that display strings or | |
85 copy them into buffers. @xref{Character Type}, and @ref{String Type}, | |
86 for information about the syntax of characters and strings. | |
87 | |
88 @node Predicates for Strings | |
89 @section The Predicates for Strings | |
90 | |
91 For more information about general sequence and array predicates, | |
92 see @ref{Sequences Arrays Vectors}, and @ref{Arrays}. | |
93 | |
94 @defun stringp object | |
95 This function returns @code{t} if @var{object} is a string, @code{nil} | |
96 otherwise. | |
97 @end defun | |
98 | |
99 @defun char-or-string-p object | |
100 This function returns @code{t} if @var{object} is a string or a | |
101 character (i.e., an integer), @code{nil} otherwise. | |
102 @end defun | |
103 | |
104 @node Creating Strings | |
105 @section Creating Strings | |
106 | |
107 The following functions create strings, either from scratch, or by | |
108 putting strings together, or by taking them apart. | |
109 | |
110 @defun make-string count character | |
111 This function returns a string made up of @var{count} repetitions of | |
112 @var{character}. If @var{count} is negative, an error is signaled. | |
113 | |
114 @example | |
115 (make-string 5 ?x) | |
116 @result{} "xxxxx" | |
117 (make-string 0 ?x) | |
118 @result{} "" | |
119 @end example | |
120 | |
121 Other functions to compare with this one include @code{char-to-string} | |
122 (@pxref{String Conversion}), @code{make-vector} (@pxref{Vectors}), and | |
123 @code{make-list} (@pxref{Building Lists}). | |
124 @end defun | |
125 | |
126 @defun substring string start &optional end | |
12098 | 127 This function returns a new string which consists of those characters |
6550 | 128 from @var{string} in the range from (and including) the character at the |
129 index @var{start} up to (but excluding) the character at the index | |
130 @var{end}. The first character is at index zero. | |
131 | |
132 @example | |
133 @group | |
134 (substring "abcdefg" 0 3) | |
135 @result{} "abc" | |
136 @end group | |
137 @end example | |
138 | |
139 @noindent | |
140 Here the index for @samp{a} is 0, the index for @samp{b} is 1, and the | |
141 index for @samp{c} is 2. Thus, three letters, @samp{abc}, are copied | |
142 from the string @code{"abcdefg"}. The index 3 marks the character | |
143 position up to which the substring is copied. The character whose index | |
144 is 3 is actually the fourth character in the string. | |
145 | |
146 A negative number counts from the end of the string, so that @minus{}1 | |
147 signifies the index of the last character of the string. For example: | |
148 | |
149 @example | |
150 @group | |
151 (substring "abcdefg" -3 -1) | |
152 @result{} "ef" | |
153 @end group | |
154 @end example | |
155 | |
156 @noindent | |
157 In this example, the index for @samp{e} is @minus{}3, the index for | |
158 @samp{f} is @minus{}2, and the index for @samp{g} is @minus{}1. | |
159 Therefore, @samp{e} and @samp{f} are included, and @samp{g} is excluded. | |
160 | |
161 When @code{nil} is used as an index, it stands for the length of the | |
162 string. Thus, | |
163 | |
164 @example | |
165 @group | |
166 (substring "abcdefg" -3 nil) | |
167 @result{} "efg" | |
168 @end group | |
169 @end example | |
170 | |
171 Omitting the argument @var{end} is equivalent to specifying @code{nil}. | |
172 It follows that @code{(substring @var{string} 0)} returns a copy of all | |
173 of @var{string}. | |
174 | |
175 @example | |
176 @group | |
177 (substring "abcdefg" 0) | |
178 @result{} "abcdefg" | |
179 @end group | |
180 @end example | |
181 | |
182 @noindent | |
183 But we recommend @code{copy-sequence} for this purpose (@pxref{Sequence | |
184 Functions}). | |
185 | |
12098 | 186 If the characters copied from @var{string} have text properties, the |
187 properties are copied into the new string also. @xref{Text Properties}. | |
188 | |
6550 | 189 A @code{wrong-type-argument} error is signaled if either @var{start} or |
190 @var{end} is not an integer or @code{nil}. An @code{args-out-of-range} | |
191 error is signaled if @var{start} indicates a character following | |
192 @var{end}, or if either integer is out of range for @var{string}. | |
193 | |
194 Contrast this function with @code{buffer-substring} (@pxref{Buffer | |
195 Contents}), which returns a string containing a portion of the text in | |
196 the current buffer. The beginning of a string is at index 0, but the | |
197 beginning of a buffer is at index 1. | |
198 @end defun | |
199 | |
200 @defun concat &rest sequences | |
201 @cindex copying strings | |
202 @cindex concatenating strings | |
203 This function returns a new string consisting of the characters in the | |
12098 | 204 arguments passed to it (along with their text properties, if any). The |
205 arguments may be strings, lists of numbers, or vectors of numbers; they | |
206 are not themselves changed. If @code{concat} receives no arguments, it | |
207 returns an empty string. | |
6550 | 208 |
209 @example | |
210 (concat "abc" "-def") | |
211 @result{} "abc-def" | |
212 (concat "abc" (list 120 (+ 256 121)) [122]) | |
213 @result{} "abcxyz" | |
214 ;; @r{@code{nil} is an empty sequence.} | |
215 (concat "abc" nil "-def") | |
216 @result{} "abc-def" | |
217 (concat "The " "quick brown " "fox.") | |
218 @result{} "The quick brown fox." | |
219 (concat) | |
220 @result{} "" | |
221 @end example | |
222 | |
223 @noindent | |
224 The second example above shows how characters stored in strings are | |
225 taken modulo 256. In other words, each character in the string is | |
226 stored in one byte. | |
227 | |
228 The @code{concat} function always constructs a new string that is | |
229 not @code{eq} to any existing string. | |
230 | |
231 When an argument is an integer (not a sequence of integers), it is | |
232 converted to a string of digits making up the decimal printed | |
12067 | 233 representation of the integer. @strong{Don't use this feature; we plan |
234 to eliminate it. If you already use this feature, change your programs | |
235 now!} The proper way to convert an integer to a decimal number in this | |
236 way is with @code{format} (@pxref{Formatting Strings}) or | |
11141
6f6c571ad0c0
Say not to use concat for integers.
Richard M. Stallman <rms@gnu.org>
parents:
8590
diff
changeset
|
237 @code{number-to-string} (@pxref{String Conversion}). |
6550 | 238 |
239 @example | |
240 @group | |
241 (concat 137) | |
242 @result{} "137" | |
243 (concat 54 321) | |
244 @result{} "54321" | |
245 @end group | |
246 @end example | |
247 | |
248 For information about other concatenation functions, see the | |
249 description of @code{mapconcat} in @ref{Mapping Functions}, | |
250 @code{vconcat} in @ref{Vectors}, and @code{append} in @ref{Building | |
251 Lists}. | |
252 @end defun | |
253 | |
254 @node Text Comparison | |
255 @section Comparison of Characters and Strings | |
256 @cindex string equality | |
257 | |
258 @defun char-equal character1 character2 | |
259 This function returns @code{t} if the arguments represent the same | |
260 character, @code{nil} otherwise. This function ignores differences | |
261 in case if @code{case-fold-search} is non-@code{nil}. | |
262 | |
263 @example | |
264 (char-equal ?x ?x) | |
265 @result{} t | |
266 (char-to-string (+ 256 ?x)) | |
267 @result{} "x" | |
268 (char-equal ?x (+ 256 ?x)) | |
269 @result{} t | |
270 @end example | |
271 @end defun | |
272 | |
273 @defun string= string1 string2 | |
274 This function returns @code{t} if the characters of the two strings | |
275 match exactly; case is significant. | |
276 | |
277 @example | |
278 (string= "abc" "abc") | |
279 @result{} t | |
280 (string= "abc" "ABC") | |
281 @result{} nil | |
282 (string= "ab" "ABC") | |
283 @result{} nil | |
284 @end example | |
12067 | 285 |
286 The function @code{string=} ignores the text properties of the | |
287 two strings. To compare strings in a way that compares their text | |
288 properties also, use @code{equal} (@pxref{Equality Predicates}). | |
6550 | 289 @end defun |
290 | |
291 @defun string-equal string1 string2 | |
292 @code{string-equal} is another name for @code{string=}. | |
293 @end defun | |
294 | |
295 @cindex lexical comparison | |
296 @defun string< string1 string2 | |
297 @c (findex string< causes problems for permuted index!!) | |
298 This function compares two strings a character at a time. First it | |
299 scans both the strings at once to find the first pair of corresponding | |
300 characters that do not match. If the lesser character of those two is | |
301 the character from @var{string1}, then @var{string1} is less, and this | |
302 function returns @code{t}. If the lesser character is the one from | |
303 @var{string2}, then @var{string1} is greater, and this function returns | |
304 @code{nil}. If the two strings match entirely, the value is @code{nil}. | |
305 | |
306 Pairs of characters are compared by their @sc{ASCII} codes. Keep in | |
307 mind that lower case letters have higher numeric values in the | |
308 @sc{ASCII} character set than their upper case counterparts; numbers and | |
309 many punctuation characters have a lower numeric value than upper case | |
310 letters. | |
311 | |
312 @example | |
313 @group | |
314 (string< "abc" "abd") | |
315 @result{} t | |
316 (string< "abd" "abc") | |
317 @result{} nil | |
318 (string< "123" "abc") | |
319 @result{} t | |
320 @end group | |
321 @end example | |
322 | |
323 When the strings have different lengths, and they match up to the | |
324 length of @var{string1}, then the result is @code{t}. If they match up | |
325 to the length of @var{string2}, the result is @code{nil}. A string of | |
326 no characters is less than any other string. | |
327 | |
328 @example | |
329 @group | |
330 (string< "" "abc") | |
331 @result{} t | |
332 (string< "ab" "abc") | |
333 @result{} t | |
334 (string< "abc" "") | |
335 @result{} nil | |
336 (string< "abc" "ab") | |
337 @result{} nil | |
338 (string< "" "") | |
339 @result{} nil | |
340 @end group | |
341 @end example | |
342 @end defun | |
343 | |
344 @defun string-lessp string1 string2 | |
345 @code{string-lessp} is another name for @code{string<}. | |
346 @end defun | |
347 | |
348 See also @code{compare-buffer-substrings} in @ref{Comparing Text}, for | |
349 a way to compare text in buffers. The function @code{string-match}, | |
350 which matches a regular expression against a string, can be used | |
351 for a kind of string comparison; see @ref{Regexp Search}. | |
352 | |
353 @node String Conversion | |
354 @comment node-name, next, previous, up | |
355 @section Conversion of Characters and Strings | |
356 @cindex conversion of strings | |
357 | |
358 This section describes functions for conversions between characters, | |
359 strings and integers. @code{format} and @code{prin1-to-string} | |
360 (@pxref{Output Functions}) can also convert Lisp objects into strings. | |
361 @code{read-from-string} (@pxref{Input Functions}) can ``convert'' a | |
362 string representation of a Lisp object into an object. | |
363 | |
364 @xref{Documentation}, for functions that produce textual descriptions | |
365 of text characters and general input events | |
366 (@code{single-key-description} and @code{text-char-description}). These | |
367 functions are used primarily for making help messages. | |
368 | |
369 @defun char-to-string character | |
370 @cindex character to string | |
371 This function returns a new string with a length of one character. | |
372 The value of @var{character}, modulo 256, is used to initialize the | |
373 element of the string. | |
374 | |
375 This function is similar to @code{make-string} with an integer argument | |
376 of 1. (@xref{Creating Strings}.) This conversion can also be done with | |
377 @code{format} using the @samp{%c} format specification. | |
378 (@xref{Formatting Strings}.) | |
379 | |
380 @example | |
381 (char-to-string ?x) | |
382 @result{} "x" | |
383 (char-to-string (+ 256 ?x)) | |
384 @result{} "x" | |
385 (make-string 1 ?x) | |
386 @result{} "x" | |
387 @end example | |
388 @end defun | |
389 | |
390 @defun string-to-char string | |
391 @cindex string to character | |
392 This function returns the first character in @var{string}. If the | |
393 string is empty, the function returns 0. The value is also 0 when the | |
394 first character of @var{string} is the null character, @sc{ASCII} code | |
395 0. | |
396 | |
397 @example | |
398 (string-to-char "ABC") | |
399 @result{} 65 | |
400 (string-to-char "xyz") | |
401 @result{} 120 | |
402 (string-to-char "") | |
403 @result{} 0 | |
404 (string-to-char "\000") | |
405 @result{} 0 | |
406 @end example | |
407 | |
408 This function may be eliminated in the future if it does not seem useful | |
409 enough to retain. | |
410 @end defun | |
411 | |
412 @defun number-to-string number | |
413 @cindex integer to string | |
414 @cindex integer to decimal | |
415 This function returns a string consisting of the printed | |
416 representation of @var{number}, which may be an integer or a floating | |
417 point number. The value starts with a sign if the argument is | |
418 negative. | |
419 | |
420 @example | |
421 (number-to-string 256) | |
422 @result{} "256" | |
423 (number-to-string -23) | |
424 @result{} "-23" | |
425 (number-to-string -23.5) | |
426 @result{} "-23.5" | |
427 @end example | |
428 | |
429 @cindex int-to-string | |
430 @code{int-to-string} is a semi-obsolete alias for this function. | |
431 | |
432 See also the function @code{format} in @ref{Formatting Strings}. | |
433 @end defun | |
434 | |
435 @defun string-to-number string | |
436 @cindex string to number | |
437 This function returns the numeric value of the characters in | |
438 @var{string}, read in base ten. It skips spaces and tabs at the | |
439 beginning of @var{string}, then reads as much of @var{string} as it can | |
440 interpret as a number. (On some systems it ignores other whitespace at | |
441 the beginning, not just spaces and tabs.) If the first character after | |
442 the ignored whitespace is not a digit or a minus sign, this function | |
443 returns 0. | |
444 | |
445 @example | |
446 (string-to-number "256") | |
447 @result{} 256 | |
448 (string-to-number "25 is a perfect square.") | |
449 @result{} 25 | |
450 (string-to-number "X256") | |
451 @result{} 0 | |
452 (string-to-number "-4.5") | |
453 @result{} -4.5 | |
454 @end example | |
455 | |
456 @findex string-to-int | |
457 @code{string-to-int} is an obsolete alias for this function. | |
458 @end defun | |
459 | |
460 @node Formatting Strings | |
461 @comment node-name, next, previous, up | |
462 @section Formatting Strings | |
463 @cindex formatting strings | |
464 @cindex strings, formatting them | |
465 | |
466 @dfn{Formatting} means constructing a string by substitution of | |
467 computed values at various places in a constant string. This string | |
468 controls how the other values are printed as well as where they appear; | |
469 it is called a @dfn{format string}. | |
470 | |
471 Formatting is often useful for computing messages to be displayed. In | |
472 fact, the functions @code{message} and @code{error} provide the same | |
473 formatting feature described here; they differ from @code{format} only | |
474 in how they use the result of formatting. | |
475 | |
476 @defun format string &rest objects | |
477 This function returns a new string that is made by copying | |
478 @var{string} and then replacing any format specification | |
479 in the copy with encodings of the corresponding @var{objects}. The | |
480 arguments @var{objects} are the computed values to be formatted. | |
481 @end defun | |
482 | |
483 @cindex @samp{%} in format | |
484 @cindex format specification | |
485 A format specification is a sequence of characters beginning with a | |
486 @samp{%}. Thus, if there is a @samp{%d} in @var{string}, the | |
487 @code{format} function replaces it with the printed representation of | |
488 one of the values to be formatted (one of the arguments @var{objects}). | |
489 For example: | |
490 | |
491 @example | |
492 @group | |
493 (format "The value of fill-column is %d." fill-column) | |
494 @result{} "The value of fill-column is 72." | |
495 @end group | |
496 @end example | |
497 | |
498 If @var{string} contains more than one format specification, the | |
499 format specifications correspond with successive values from | |
500 @var{objects}. Thus, the first format specification in @var{string} | |
501 uses the first such value, the second format specification uses the | |
502 second such value, and so on. Any extra format specifications (those | |
503 for which there are no corresponding values) cause unpredictable | |
504 behavior. Any extra values to be formatted are ignored. | |
505 | |
506 Certain format specifications require values of particular types. | |
507 However, no error is signaled if the value actually supplied fails to | |
508 have the expected type. Instead, the output is likely to be | |
509 meaningless. | |
510 | |
511 Here is a table of valid format specifications: | |
512 | |
513 @table @samp | |
514 @item %s | |
515 Replace the specification with the printed representation of the object, | |
516 made without quoting. Thus, strings are represented by their contents | |
517 alone, with no @samp{"} characters, and symbols appear without @samp{\} | |
518 characters. | |
519 | |
520 If there is no corresponding object, the empty string is used. | |
521 | |
522 @item %S | |
523 Replace the specification with the printed representation of the object, | |
524 made with quoting. Thus, strings are enclosed in @samp{"} characters, | |
525 and @samp{\} characters appear where necessary before special characters. | |
526 | |
527 If there is no corresponding object, the empty string is used. | |
528 | |
529 @item %o | |
530 @cindex integer to octal | |
531 Replace the specification with the base-eight representation of an | |
532 integer. | |
533 | |
534 @item %d | |
535 Replace the specification with the base-ten representation of an | |
536 integer. | |
537 | |
538 @item %x | |
539 @cindex integer to hexadecimal | |
540 Replace the specification with the base-sixteen representation of an | |
541 integer. | |
542 | |
543 @item %c | |
544 Replace the specification with the character which is the value given. | |
545 | |
546 @item %e | |
547 Replace the specification with the exponential notation for a floating | |
548 point number. | |
549 | |
550 @item %f | |
551 Replace the specification with the decimal-point notation for a floating | |
552 point number. | |
553 | |
554 @item %g | |
555 Replace the specification with notation for a floating point number, | |
556 using either exponential notation or decimal-point notation whichever | |
557 is shorter. | |
558 | |
559 @item %% | |
560 A single @samp{%} is placed in the string. This format specification is | |
561 unusual in that it does not use a value. For example, @code{(format "%% | |
562 %d" 30)} returns @code{"% 30"}. | |
563 @end table | |
564 | |
565 Any other format character results in an @samp{Invalid format | |
566 operation} error. | |
567 | |
568 Here are several examples: | |
569 | |
570 @example | |
571 @group | |
572 (format "The name of this buffer is %s." (buffer-name)) | |
573 @result{} "The name of this buffer is strings.texi." | |
574 | |
575 (format "The buffer object prints as %s." (current-buffer)) | |
576 @result{} "The buffer object prints as #<buffer strings.texi>." | |
577 | |
578 (format "The octal value of %d is %o, | |
579 and the hex value is %x." 18 18 18) | |
580 @result{} "The octal value of 18 is 22, | |
581 and the hex value is 12." | |
582 @end group | |
583 @end example | |
584 | |
585 @cindex numeric prefix | |
586 @cindex field width | |
587 @cindex padding | |
588 All the specification characters allow an optional numeric prefix | |
589 between the @samp{%} and the character. The optional numeric prefix | |
590 defines the minimum width for the object. If the printed representation | |
591 of the object contains fewer characters than this, then it is padded. | |
592 The padding is on the left if the prefix is positive (or starts with | |
593 zero) and on the right if the prefix is negative. The padding character | |
594 is normally a space, but if the numeric prefix starts with a zero, zeros | |
595 are used for padding. | |
596 | |
597 @example | |
598 (format "%06d is padded on the left with zeros" 123) | |
599 @result{} "000123 is padded on the left with zeros" | |
600 | |
601 (format "%-6d is padded on the right" 123) | |
602 @result{} "123 is padded on the right" | |
603 @end example | |
604 | |
605 @code{format} never truncates an object's printed representation, no | |
606 matter what width you specify. Thus, you can use a numeric prefix to | |
607 specify a minimum spacing between columns with no risk of losing | |
608 information. | |
609 | |
610 In the following three examples, @samp{%7s} specifies a minimum width | |
611 of 7. In the first case, the string inserted in place of @samp{%7s} has | |
612 only 3 letters, so 4 blank spaces are inserted for padding. In the | |
613 second case, the string @code{"specification"} is 13 letters wide but is | |
614 not truncated. In the third case, the padding is on the right. | |
615 | |
616 @smallexample | |
617 @group | |
618 (format "The word `%7s' actually has %d letters in it." | |
619 "foo" (length "foo")) | |
620 @result{} "The word ` foo' actually has 3 letters in it." | |
621 @end group | |
622 | |
623 @group | |
624 (format "The word `%7s' actually has %d letters in it." | |
625 "specification" (length "specification")) | |
626 @result{} "The word `specification' actually has 13 letters in it." | |
627 @end group | |
628 | |
629 @group | |
630 (format "The word `%-7s' actually has %d letters in it." | |
631 "foo" (length "foo")) | |
632 @result{} "The word `foo ' actually has 3 letters in it." | |
633 @end group | |
634 @end smallexample | |
635 | |
636 @node Character Case | |
637 @comment node-name, next, previous, up | |
638 @section Character Case | |
639 @cindex upper case | |
640 @cindex lower case | |
641 @cindex character case | |
642 | |
643 The character case functions change the case of single characters or | |
644 of the contents of strings. The functions convert only alphabetic | |
645 characters (the letters @samp{A} through @samp{Z} and @samp{a} through | |
646 @samp{z}); other characters are not altered. The functions do not | |
647 modify the strings that are passed to them as arguments. | |
648 | |
649 The examples below use the characters @samp{X} and @samp{x} which have | |
650 @sc{ASCII} codes 88 and 120 respectively. | |
651 | |
652 @defun downcase string-or-char | |
653 This function converts a character or a string to lower case. | |
654 | |
655 When the argument to @code{downcase} is a string, the function creates | |
656 and returns a new string in which each letter in the argument that is | |
657 upper case is converted to lower case. When the argument to | |
658 @code{downcase} is a character, @code{downcase} returns the | |
659 corresponding lower case character. This value is an integer. If the | |
660 original character is lower case, or is not a letter, then the value | |
661 equals the original character. | |
662 | |
663 @example | |
664 (downcase "The cat in the hat") | |
665 @result{} "the cat in the hat" | |
666 | |
667 (downcase ?X) | |
668 @result{} 120 | |
669 @end example | |
670 @end defun | |
671 | |
672 @defun upcase string-or-char | |
673 This function converts a character or a string to upper case. | |
674 | |
675 When the argument to @code{upcase} is a string, the function creates | |
676 and returns a new string in which each letter in the argument that is | |
677 lower case is converted to upper case. | |
678 | |
679 When the argument to @code{upcase} is a character, @code{upcase} | |
680 returns the corresponding upper case character. This value is an integer. | |
681 If the original character is upper case, or is not a letter, then the | |
682 value equals the original character. | |
683 | |
684 @example | |
685 (upcase "The cat in the hat") | |
686 @result{} "THE CAT IN THE HAT" | |
687 | |
688 (upcase ?x) | |
689 @result{} 88 | |
690 @end example | |
691 @end defun | |
692 | |
693 @defun capitalize string-or-char | |
694 @cindex capitalization | |
695 This function capitalizes strings or characters. If | |
696 @var{string-or-char} is a string, the function creates and returns a new | |
697 string, whose contents are a copy of @var{string-or-char} in which each | |
698 word has been capitalized. This means that the first character of each | |
699 word is converted to upper case, and the rest are converted to lower | |
700 case. | |
701 | |
702 The definition of a word is any sequence of consecutive characters that | |
703 are assigned to the word constituent syntax class in the current syntax | |
704 table (@xref{Syntax Class Table}). | |
705 | |
706 When the argument to @code{capitalize} is a character, @code{capitalize} | |
707 has the same result as @code{upcase}. | |
708 | |
709 @example | |
710 (capitalize "The cat in the hat") | |
711 @result{} "The Cat In The Hat" | |
712 | |
713 (capitalize "THE 77TH-HATTED CAT") | |
714 @result{} "The 77th-Hatted Cat" | |
715 | |
716 @group | |
717 (capitalize ?x) | |
718 @result{} 88 | |
719 @end group | |
720 @end example | |
721 @end defun | |
722 | |
723 @node Case Table | |
724 @section The Case Table | |
725 | |
726 You can customize case conversion by installing a special @dfn{case | |
727 table}. A case table specifies the mapping between upper case and lower | |
728 case letters. It affects both the string and character case conversion | |
729 functions (see the previous section) and those that apply to text in the | |
730 buffer (@pxref{Case Changes}). You need a case table if you are using a | |
731 language which has letters other than the standard @sc{ASCII} letters. | |
732 | |
733 A case table is a list of this form: | |
734 | |
735 @example | |
736 (@var{downcase} @var{upcase} @var{canonicalize} @var{equivalences}) | |
737 @end example | |
738 | |
739 @noindent | |
740 where each element is either @code{nil} or a string of length 256. The | |
741 element @var{downcase} says how to map each character to its lower-case | |
742 equivalent. The element @var{upcase} maps each character to its | |
743 upper-case equivalent. If lower and upper case characters are in | |
744 one-to-one correspondence, use @code{nil} for @var{upcase}; then Emacs | |
745 deduces the upcase table from @var{downcase}. | |
746 | |
747 For some languages, upper and lower case letters are not in one-to-one | |
748 correspondence. There may be two different lower case letters with the | |
749 same upper case equivalent. In these cases, you need to specify the | |
750 maps for both directions. | |
751 | |
752 The element @var{canonicalize} maps each character to a canonical | |
753 equivalent; any two characters that are related by case-conversion have | |
754 the same canonical equivalent character. | |
755 | |
756 The element @var{equivalences} is a map that cyclicly permutes each | |
757 equivalence class (of characters with the same canonical equivalent). | |
758 (For ordinary @sc{ASCII}, this would map @samp{a} into @samp{A} and | |
759 @samp{A} into @samp{a}, and likewise for each set of equivalent | |
760 characters.) | |
761 | |
6938
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
762 When you construct a case table, you can provide @code{nil} for |
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
763 @var{canonicalize}; then Emacs fills in this string from @var{upcase} |
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
764 and @var{downcase}. You can also provide @code{nil} for |
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
765 @var{equivalences}; then Emacs fills in this string from |
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
766 @var{canonicalize}. In a case table that is actually in use, those |
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
767 components are non-@code{nil}. Do not try to specify @var{equivalences} |
782646fc7505
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6550
diff
changeset
|
768 without also specifying @var{canonicalize}. |
6550 | 769 |
770 Each buffer has a case table. Emacs also has a @dfn{standard case | |
771 table} which is copied into each buffer when you create the buffer. | |
772 Changing the standard case table doesn't affect any existing buffers. | |
773 | |
774 Here are the functions for working with case tables: | |
775 | |
776 @defun case-table-p object | |
777 This predicate returns non-@code{nil} if @var{object} is a valid case | |
778 table. | |
779 @end defun | |
780 | |
781 @defun set-standard-case-table table | |
782 This function makes @var{table} the standard case table, so that it will | |
783 apply to any buffers created subsequently. | |
784 @end defun | |
785 | |
786 @defun standard-case-table | |
787 This returns the standard case table. | |
788 @end defun | |
789 | |
790 @defun current-case-table | |
791 This function returns the current buffer's case table. | |
792 @end defun | |
793 | |
794 @defun set-case-table table | |
795 This sets the current buffer's case table to @var{table}. | |
796 @end defun | |
797 | |
798 The following three functions are convenient subroutines for packages | |
799 that define non-@sc{ASCII} character sets. They modify a string | |
800 @var{downcase-table} provided as an argument; this should be a string to | |
801 be used as the @var{downcase} part of a case table. They also modify | |
802 the standard syntax table. @xref{Syntax Tables}. | |
803 | |
804 @defun set-case-syntax-pair uc lc downcase-table | |
805 This function specifies a pair of corresponding letters, one upper case | |
806 and one lower case. | |
807 @end defun | |
808 | |
809 @defun set-case-syntax-delims l r downcase-table | |
810 This function makes characters @var{l} and @var{r} a matching pair of | |
811 case-invariant delimiters. | |
812 @end defun | |
813 | |
814 @defun set-case-syntax char syntax downcase-table | |
815 This function makes @var{char} case-invariant, with syntax | |
816 @var{syntax}. | |
817 @end defun | |
818 | |
819 @deffn Command describe-buffer-case-table | |
820 This command displays a description of the contents of the current | |
821 buffer's case table. | |
822 @end deffn | |
823 | |
824 @cindex ISO Latin 1 | |
825 @pindex iso-syntax | |
826 You can load the library @file{iso-syntax} to set up the standard syntax | |
8590 | 827 table and define a case table for the 8-bit ISO Latin 1 character set. |