Update.
[glibc.git] / manual / pattern.texi
blob24e8e4c61204436a2ac03c36ad146a900c0028f3
1 @node Pattern Matching, I/O Overview, Searching and Sorting, Top
2 @c %MENU% Matching shell ``globs'' and regular expressions
3 @chapter Pattern Matching
5 The GNU C Library provides pattern matching facilities for two kinds of
6 patterns: regular expressions and file-name wildcards.  The library also
7 provides a facility for expanding variable and command references and
8 parsing text into words in the way the shell does.
10 @menu
11 * Wildcard Matching::    Matching a wildcard pattern against a single string.
12 * Globbing::             Finding the files that match a wildcard pattern.
13 * Regular Expressions::  Matching regular expressions against strings.
14 * Word Expansion::       Expanding shell variables, nested commands,
15                             arithmetic, and wildcards.
16                             This is what the shell does with shell commands.
17 @end menu
19 @node Wildcard Matching
20 @section Wildcard Matching
22 @pindex fnmatch.h
23 This section describes how to match a wildcard pattern against a
24 particular string.  The result is a yes or no answer: does the
25 string fit the pattern or not.  The symbols described here are all
26 declared in @file{fnmatch.h}.
28 @comment fnmatch.h
29 @comment POSIX.2
30 @deftypefun int fnmatch (const char *@var{pattern}, const char *@var{string}, int @var{flags})
31 This function tests whether the string @var{string} matches the pattern
32 @var{pattern}.  It returns @code{0} if they do match; otherwise, it
33 returns the nonzero value @code{FNM_NOMATCH}.  The arguments
34 @var{pattern} and @var{string} are both strings.
36 The argument @var{flags} is a combination of flag bits that alter the
37 details of matching.  See below for a list of the defined flags.
39 In the GNU C Library, @code{fnmatch} cannot experience an ``error''---it
40 always returns an answer for whether the match succeeds.  However, other
41 implementations of @code{fnmatch} might sometimes report ``errors''.
42 They would do so by returning nonzero values that are not equal to
43 @code{FNM_NOMATCH}.
44 @end deftypefun
46 These are the available flags for the @var{flags} argument:
48 @table @code
49 @comment fnmatch.h
50 @comment GNU
51 @item FNM_FILE_NAME
52 Treat the @samp{/} character specially, for matching file names.  If
53 this flag is set, wildcard constructs in @var{pattern} cannot match
54 @samp{/} in @var{string}.  Thus, the only way to match @samp{/} is with
55 an explicit @samp{/} in @var{pattern}.
57 @comment fnmatch.h
58 @comment POSIX.2
59 @item FNM_PATHNAME
60 This is an alias for @code{FNM_FILE_NAME}; it comes from POSIX.2.  We
61 don't recommend this name because we don't use the term ``pathname'' for
62 file names.
64 @comment fnmatch.h
65 @comment POSIX.2
66 @item FNM_PERIOD
67 Treat the @samp{.} character specially if it appears at the beginning of
68 @var{string}.  If this flag is set, wildcard constructs in @var{pattern}
69 cannot match @samp{.} as the first character of @var{string}.
71 If you set both @code{FNM_PERIOD} and @code{FNM_FILE_NAME}, then the
72 special treatment applies to @samp{.} following @samp{/} as well as to
73 @samp{.} at the beginning of @var{string}.  (The shell uses the
74 @code{FNM_PERIOD} and @code{FNM_FILE_NAME} flags together for matching
75 file names.)
77 @comment fnmatch.h
78 @comment POSIX.2
79 @item FNM_NOESCAPE
80 Don't treat the @samp{\} character specially in patterns.  Normally,
81 @samp{\} quotes the following character, turning off its special meaning
82 (if any) so that it matches only itself.  When quoting is enabled, the
83 pattern @samp{\?} matches only the string @samp{?}, because the question
84 mark in the pattern acts like an ordinary character.
86 If you use @code{FNM_NOESCAPE}, then @samp{\} is an ordinary character.
88 @comment fnmatch.h
89 @comment GNU
90 @item FNM_LEADING_DIR
91 Ignore a trailing sequence of characters starting with a @samp{/} in
92 @var{string}; that is to say, test whether @var{string} starts with a
93 directory name that @var{pattern} matches.
95 If this flag is set, either @samp{foo*} or @samp{foobar} as a pattern
96 would match the string @samp{foobar/frobozz}.
98 @comment fnmatch.h
99 @comment GNU
100 @item FNM_CASEFOLD
101 Ignore case in comparing @var{string} to @var{pattern}.
102 @end table
104 @node Globbing
105 @section Globbing
107 @cindex globbing
108 The archetypal use of wildcards is for matching against the files in a
109 directory, and making a list of all the matches.  This is called
110 @dfn{globbing}.
112 You could do this using @code{fnmatch}, by reading the directory entries
113 one by one and testing each one with @code{fnmatch}.  But that would be
114 slow (and complex, since you would have to handle subdirectories by
115 hand).
117 The library provides a function @code{glob} to make this particular use
118 of wildcards convenient.  @code{glob} and the other symbols in this
119 section are declared in @file{glob.h}.
121 @menu
122 * Calling Glob::             Basic use of @code{glob}.
123 * Flags for Globbing::       Flags that enable various options in @code{glob}.
124 * More Flags for Globbing::  GNU specific extensions to @code{glob}.
125 @end menu
127 @node Calling Glob
128 @subsection Calling @code{glob}
130 The result of globbing is a vector of file names (strings).  To return
131 this vector, @code{glob} uses a special data type, @code{glob_t}, which
132 is a structure.  You pass @code{glob} the address of the structure, and
133 it fills in the structure's fields to tell you about the results.
135 @comment glob.h
136 @comment POSIX.2
137 @deftp {Data Type} glob_t
138 This data type holds a pointer to a word vector.  More precisely, it
139 records both the address of the word vector and its size.  The GNU
140 implementation contains some more fields which are non-standard
141 extensions.
143 @table @code
144 @item gl_pathc
145 The number of elements in the vector.
147 @item gl_pathv
148 The address of the vector.  This field has type @w{@code{char **}}.
150 @item gl_offs
151 The offset of the first real element of the vector, from its nominal
152 address in the @code{gl_pathv} field.  Unlike the other fields, this
153 is always an input to @code{glob}, rather than an output from it.
155 If you use a nonzero offset, then that many elements at the beginning of
156 the vector are left empty.  (The @code{glob} function fills them with
157 null pointers.)
159 The @code{gl_offs} field is meaningful only if you use the
160 @code{GLOB_DOOFFS} flag.  Otherwise, the offset is always zero
161 regardless of what is in this field, and the first real element comes at
162 the beginning of the vector.
164 @item gl_closedir
165 The address of an alternative implementation of the @code{closedir}
166 function.  It is used if the @code{GLOB_ALTDIRFUNC} bit is set in
167 the flag parameter.  The type of this field is
168 @w{@code{void (*) (void *)}}.
170 This is a GNU extension.
172 @item gl_readdir
173 The address of an alternative implementation of the @code{readdir}
174 function used to read the contents of a directory.  It is used if the
175 @code{GLOB_ALTDIRFUNC} bit is set in the flag parameter.  The type of
176 this field is @w{@code{struct dirent *(*) (void *)}}.
178 This is a GNU extension.
180 @item gl_opendir
181 The address of an alternative implementation of the @code{opendir}
182 function.  It is used if the @code{GLOB_ALTDIRFUNC} bit is set in
183 the flag parameter.  The type of this field is
184 @w{@code{void *(*) (const char *)}}.
186 This is a GNU extension.
188 @item gl_stat
189 The address of an alternative implementation of the @code{stat} function
190 to get information about an object in the filesystem.  It is used if the
191 @code{GLOB_ALTDIRFUNC} bit is set in the flag parameter.  The type of
192 this field is @w{@code{int (*) (const char *, struct stat *)}}.
194 This is a GNU extension.
196 @item gl_lstat
197 The address of an alternative implementation of the @code{lstat}
198 function to get information about an object in the filesystems, not
199 following symbolic links.  It is used if the @code{GLOB_ALTDIRFUNC} bit
200 is set in the flag parameter.  The type of this field is @code{@w{int
201 (*) (const char *,} @w{struct stat *)}}.
203 This is a GNU extension.
204 @end table
205 @end deftp
207 @comment glob.h
208 @comment POSIX.2
209 @deftypefun int glob (const char *@var{pattern}, int @var{flags}, int (*@var{errfunc}) (const char *@var{filename}, int @var{error-code}), glob_t *@var{vector-ptr})
210 The function @code{glob} does globbing using the pattern @var{pattern}
211 in the current directory.  It puts the result in a newly allocated
212 vector, and stores the size and address of this vector into
213 @code{*@var{vector-ptr}}.  The argument @var{flags} is a combination of
214 bit flags; see @ref{Flags for Globbing}, for details of the flags.
216 The result of globbing is a sequence of file names.  The function
217 @code{glob} allocates a string for each resulting word, then
218 allocates a vector of type @code{char **} to store the addresses of
219 these strings.  The last element of the vector is a null pointer.
220 This vector is called the @dfn{word vector}.
222 To return this vector, @code{glob} stores both its address and its
223 length (number of elements, not counting the terminating null pointer)
224 into @code{*@var{vector-ptr}}.
226 Normally, @code{glob} sorts the file names alphabetically before
227 returning them.  You can turn this off with the flag @code{GLOB_NOSORT}
228 if you want to get the information as fast as possible.  Usually it's
229 a good idea to let @code{glob} sort them---if you process the files in
230 alphabetical order, the users will have a feel for the rate of progress
231 that your application is making.
233 If @code{glob} succeeds, it returns 0.  Otherwise, it returns one
234 of these error codes:
236 @table @code
237 @comment glob.h
238 @comment POSIX.2
239 @item GLOB_ABORTED
240 There was an error opening a directory, and you used the flag
241 @code{GLOB_ERR} or your specified @var{errfunc} returned a nonzero
242 value.
243 @iftex
244 See below
245 @end iftex
246 @ifinfo
247 @xref{Flags for Globbing},
248 @end ifinfo
249 for an explanation of the @code{GLOB_ERR} flag and @var{errfunc}.
251 @comment glob.h
252 @comment POSIX.2
253 @item GLOB_NOMATCH
254 The pattern didn't match any existing files.  If you use the
255 @code{GLOB_NOCHECK} flag, then you never get this error code, because
256 that flag tells @code{glob} to @emph{pretend} that the pattern matched
257 at least one file.
259 @comment glob.h
260 @comment POSIX.2
261 @item GLOB_NOSPACE
262 It was impossible to allocate memory to hold the result.
263 @end table
265 In the event of an error, @code{glob} stores information in
266 @code{*@var{vector-ptr}} about all the matches it has found so far.
267 @end deftypefun
269 @node Flags for Globbing
270 @subsection Flags for Globbing
272 This section describes the flags that you can specify in the
273 @var{flags} argument to @code{glob}.  Choose the flags you want,
274 and combine them with the C bitwise OR operator @code{|}.
276 @table @code
277 @comment glob.h
278 @comment POSIX.2
279 @item GLOB_APPEND
280 Append the words from this expansion to the vector of words produced by
281 previous calls to @code{glob}.  This way you can effectively expand
282 several words as if they were concatenated with spaces between them.
284 In order for appending to work, you must not modify the contents of the
285 word vector structure between calls to @code{glob}.  And, if you set
286 @code{GLOB_DOOFFS} in the first call to @code{glob}, you must also
287 set it when you append to the results.
289 Note that the pointer stored in @code{gl_pathv} may no longer be valid
290 after you call @code{glob} the second time, because @code{glob} might
291 have relocated the vector.  So always fetch @code{gl_pathv} from the
292 @code{glob_t} structure after each @code{glob} call; @strong{never} save
293 the pointer across calls.
295 @comment glob.h
296 @comment POSIX.2
297 @item GLOB_DOOFFS
298 Leave blank slots at the beginning of the vector of words.
299 The @code{gl_offs} field says how many slots to leave.
300 The blank slots contain null pointers.
302 @comment glob.h
303 @comment POSIX.2
304 @item GLOB_ERR
305 Give up right away and report an error if there is any difficulty
306 reading the directories that must be read in order to expand @var{pattern}
307 fully.  Such difficulties might include a directory in which you don't
308 have the requisite access.  Normally, @code{glob} tries its best to keep
309 on going despite any errors, reading whatever directories it can.
311 You can exercise even more control than this by specifying an
312 error-handler function @var{errfunc} when you call @code{glob}.  If
313 @var{errfunc} is not a null pointer, then @code{glob} doesn't give up
314 right away when it can't read a directory; instead, it calls
315 @var{errfunc} with two arguments, like this:
317 @smallexample
318 (*@var{errfunc}) (@var{filename}, @var{error-code})
319 @end smallexample
321 @noindent
322 The argument @var{filename} is the name of the directory that
323 @code{glob} couldn't open or couldn't read, and @var{error-code} is the
324 @code{errno} value that was reported to @code{glob}.
326 If the error handler function returns nonzero, then @code{glob} gives up
327 right away.  Otherwise, it continues.
329 @comment glob.h
330 @comment POSIX.2
331 @item GLOB_MARK
332 If the pattern matches the name of a directory, append @samp{/} to the
333 directory's name when returning it.
335 @comment glob.h
336 @comment POSIX.2
337 @item GLOB_NOCHECK
338 If the pattern doesn't match any file names, return the pattern itself
339 as if it were a file name that had been matched.  (Normally, when the
340 pattern doesn't match anything, @code{glob} returns that there were no
341 matches.)
343 @comment glob.h
344 @comment POSIX.2
345 @item GLOB_NOSORT
346 Don't sort the file names; return them in no particular order.
347 (In practice, the order will depend on the order of the entries in
348 the directory.)  The only reason @emph{not} to sort is to save time.
350 @comment glob.h
351 @comment POSIX.2
352 @item GLOB_NOESCAPE
353 Don't treat the @samp{\} character specially in patterns.  Normally,
354 @samp{\} quotes the following character, turning off its special meaning
355 (if any) so that it matches only itself.  When quoting is enabled, the
356 pattern @samp{\?} matches only the string @samp{?}, because the question
357 mark in the pattern acts like an ordinary character.
359 If you use @code{GLOB_NOESCAPE}, then @samp{\} is an ordinary character.
361 @code{glob} does its work by calling the function @code{fnmatch}
362 repeatedly.  It handles the flag @code{GLOB_NOESCAPE} by turning on the
363 @code{FNM_NOESCAPE} flag in calls to @code{fnmatch}.
364 @end table
366 @node More Flags for Globbing
367 @subsection More Flags for Globbing
369 Beside the flags described in the last section, the GNU implementation of
370 @code{glob} allows a few more flags which are also defined in the
371 @file{glob.h} file.  Some of the extensions implement functionality
372 which is available in modern shell implementations.
374 @table @code
375 @comment glob.h
376 @comment GNU
377 @item GLOB_PERIOD
378 The @code{.} character (period) is treated special.  It cannot be
379 matched by wildcards.  @xref{Wildcard Matching}, @code{FNM_PERIOD}.
381 @comment glob.h
382 @comment GNU
383 @item GLOB_MAGCHAR
384 The @code{GLOB_MAGCHAR} value is not to be given to @code{glob} in the
385 @var{flags} parameter.  Instead, @code{glob} sets this bit in the
386 @var{gl_flags} element of the @var{glob_t} structure provided as the
387 result if the pattern used for matching contains any wildcard character.
389 @comment glob.h
390 @comment GNU
391 @item GLOB_ALTDIRFUNC
392 Instead of the using the using the normal functions for accessing the
393 filesystem the @code{glob} implementation uses the user-supplied
394 functions specified in the structure pointed to by @var{pglob}
395 parameter.  For more information about the functions refer to the
396 sections about directory handling @ref{Accessing Directories} and
397 @ref{Reading Attributes}.
399 @comment glob.h
400 @comment GNU
401 @item GLOB_BRACE
402 If this flag is given the handling of braces in the pattern is changed.
403 It is now required that braces appear correctly grouped.  I.e., for each
404 opening brace there must be a closing one.  Braces can be used
405 recursively.  So it is possible to define one brace expression in
406 another one.  It is important to note that the range of each brace
407 expression is completely contained in the outer brace expression (if
408 there is one).
410 The string between the matching braces is separated into single
411 expressions by splitting at @code{,} (comma) characters.  The commas
412 themself are discarded.  Please note what we said above about recursive
413 brace expressions.  The commas used to separate the subexpressions must
414 be at the same level.  Commas in brace subexpressions are not matched.
415 They are used during expansion of the brace expression of the deeper
416 level.  The example below shows this
418 @smallexample
419 glob ("@{foo/@{,bar,biz@},baz@}", GLOB_BRACE, NULL, &result)
420 @end smallexample
422 @noindent
423 is equivalent to the sequence
425 @smallexample
426 glob ("foo/", GLOB_BRACE, NULL, &result)
427 glob ("foo/bar", GLOB_BRACE|GLOB_APPEND, NULL, &result)
428 glob ("foo/biz", GLOB_BRACE|GLOB_APPEND, NULL, &result)
429 glob ("baz", GLOB_BRACE|GLOB_APPEND, NULL, &result)
430 @end smallexample
432 @noindent
433 if we leave aside error handling.
435 @comment glob.h
436 @comment GNU
437 @item GLOB_NOMAGIC
438 If the pattern contains no wildcard constructs (it is a literal file name),
439 return it as the sole ``matching'' word, even if no file exists by that name.
441 @comment glob.h
442 @comment GNU
443 @item GLOB_TILDE
444 If this flag is used the character @code{~} (tilde) is handled special
445 if it appears at the beginning of the pattern.  Instead of being taken
446 verbatim it is used to represent the home directory of a known user.
448 If @code{~} is the only character in pattern or it is followed by a
449 @code{/} (slash), the home directory of the process owner is
450 substituted.  Using @code{getlogin} and @code{getpwnam} the information
451 is read from the system databases.  As an example take user @code{bart}
452 with his home directory at @file{/home/bart}.  For him a call like
454 @smallexample
455 glob ("~/bin/*", GLOB_TILDE, NULL, &result)
456 @end smallexample
458 @noindent
459 would return the contents of the directory @file{/home/bart/bin}.
460 Instead of referring to the own home directory it is also possible to
461 name the home directory of other users.  To do so one has to append the
462 user name after the tilde character.  So the contents of user
463 @code{homer}'s @file{bin} directory can be retrieved by
465 @smallexample
466 glob ("~homer/bin/*", GLOB_TILDE, NULL, &result)
467 @end smallexample
469 This functionality is equivalent to what is available in C-shells.
471 @comment glob.h
472 @comment GNU
473 @item GLOB_ONLYDIR
474 If this flag is used the globbing function takes this as a
475 @strong{hint} that the caller is only interested in directories
476 matching the pattern.  If the information about the type of the file
477 is easily available non-directories will be rejected but no extra
478 work will be done to determine the information for each file.  I.e.,
479 the caller must still be able to filter directories out.
481 This functionality is only available with the GNU @code{glob}
482 implementation.  It is mainly used internally to increase the
483 performance but might be useful for a user as well and therefore is
484 documented here.
485 @end table
487 Calling @code{glob} will in most cases allocate resources which are used
488 to represent the result of the function call.  If the same object of
489 type @code{glob_t} is used in multiple call to @code{glob} the resources
490 are freed or reused so that no leaks appear.  But this does not include
491 the time when all @code{glob} calls are done.
493 @comment glob.h
494 @comment POSIX.2
495 @deftypefun void globfree (glob_t *@var{pglob})
496 The @code{globfree} function frees all resources allocated by previous
497 calls to @code{glob} associated with the object pointed to by
498 @var{pglob}.  This function should be called whenever the currently used
499 @code{glob_t} typed object isn't used anymore.
500 @end deftypefun
503 @node Regular Expressions
504 @section Regular Expression Matching
506 The GNU C library supports two interfaces for matching regular
507 expressions.  One is the standard POSIX.2 interface, and the other is
508 what the GNU system has had for many years.
510 Both interfaces are declared in the header file @file{regex.h}.
511 If you define @w{@code{_POSIX_C_SOURCE}}, then only the POSIX.2
512 functions, structures, and constants are declared.
513 @c !!! we only document the POSIX.2 interface here!!
515 @menu
516 * POSIX Regexp Compilation::    Using @code{regcomp} to prepare to match.
517 * Flags for POSIX Regexps::     Syntax variations for @code{regcomp}.
518 * Matching POSIX Regexps::      Using @code{regexec} to match the compiled
519                                    pattern that you get from @code{regcomp}.
520 * Regexp Subexpressions::       Finding which parts of the string were matched.
521 * Subexpression Complications:: Find points of which parts were matched.
522 * Regexp Cleanup::              Freeing storage; reporting errors.
523 @end menu
525 @node POSIX Regexp Compilation
526 @subsection POSIX Regular Expression Compilation
528 Before you can actually match a regular expression, you must
529 @dfn{compile} it.  This is not true compilation---it produces a special
530 data structure, not machine instructions.  But it is like ordinary
531 compilation in that its purpose is to enable you to ``execute'' the
532 pattern fast.  (@xref{Matching POSIX Regexps}, for how to use the
533 compiled regular expression for matching.)
535 There is a special data type for compiled regular expressions:
537 @comment regex.h
538 @comment POSIX.2
539 @deftp {Data Type} regex_t
540 This type of object holds a compiled regular expression.
541 It is actually a structure.  It has just one field that your programs
542 should look at:
544 @table @code
545 @item re_nsub
546 This field holds the number of parenthetical subexpressions in the
547 regular expression that was compiled.
548 @end table
550 There are several other fields, but we don't describe them here, because
551 only the functions in the library should use them.
552 @end deftp
554 After you create a @code{regex_t} object, you can compile a regular
555 expression into it by calling @code{regcomp}.
557 @comment regex.h
558 @comment POSIX.2
559 @deftypefun int regcomp (regex_t *@var{compiled}, const char *@var{pattern}, int @var{cflags})
560 The function @code{regcomp} ``compiles'' a regular expression into a
561 data structure that you can use with @code{regexec} to match against a
562 string.  The compiled regular expression format is designed for
563 efficient matching.  @code{regcomp} stores it into @code{*@var{compiled}}.
565 It's up to you to allocate an object of type @code{regex_t} and pass its
566 address to @code{regcomp}.
568 The argument @var{cflags} lets you specify various options that control
569 the syntax and semantics of regular expressions.  @xref{Flags for POSIX
570 Regexps}.
572 If you use the flag @code{REG_NOSUB}, then @code{regcomp} omits from
573 the compiled regular expression the information necessary to record
574 how subexpressions actually match.  In this case, you might as well
575 pass @code{0} for the @var{matchptr} and @var{nmatch} arguments when
576 you call @code{regexec}.
578 If you don't use @code{REG_NOSUB}, then the compiled regular expression
579 does have the capacity to record how subexpressions match.  Also,
580 @code{regcomp} tells you how many subexpressions @var{pattern} has, by
581 storing the number in @code{@var{compiled}->re_nsub}.  You can use that
582 value to decide how long an array to allocate to hold information about
583 subexpression matches.
585 @code{regcomp} returns @code{0} if it succeeds in compiling the regular
586 expression; otherwise, it returns a nonzero error code (see the table
587 below).  You can use @code{regerror} to produce an error message string
588 describing the reason for a nonzero value; see @ref{Regexp Cleanup}.
590 @end deftypefun
592 Here are the possible nonzero values that @code{regcomp} can return:
594 @table @code
595 @comment regex.h
596 @comment POSIX.2
597 @item REG_BADBR
598 There was an invalid @samp{\@{@dots{}\@}} construct in the regular
599 expression.  A valid @samp{\@{@dots{}\@}} construct must contain either
600 a single number, or two numbers in increasing order separated by a
601 comma.
603 @comment regex.h
604 @comment POSIX.2
605 @item REG_BADPAT
606 There was a syntax error in the regular expression.
608 @comment regex.h
609 @comment POSIX.2
610 @item REG_BADRPT
611 A repetition operator such as @samp{?} or @samp{*} appeared in a bad
612 position (with no preceding subexpression to act on).
614 @comment regex.h
615 @comment POSIX.2
616 @item REG_ECOLLATE
617 The regular expression referred to an invalid collating element (one not
618 defined in the current locale for string collation).  @xref{Locale
619 Categories}.
621 @comment regex.h
622 @comment POSIX.2
623 @item REG_ECTYPE
624 The regular expression referred to an invalid character class name.
626 @comment regex.h
627 @comment POSIX.2
628 @item REG_EESCAPE
629 The regular expression ended with @samp{\}.
631 @comment regex.h
632 @comment POSIX.2
633 @item REG_ESUBREG
634 There was an invalid number in the @samp{\@var{digit}} construct.
636 @comment regex.h
637 @comment POSIX.2
638 @item REG_EBRACK
639 There were unbalanced square brackets in the regular expression.
641 @comment regex.h
642 @comment POSIX.2
643 @item REG_EPAREN
644 An extended regular expression had unbalanced parentheses,
645 or a basic regular expression had unbalanced @samp{\(} and @samp{\)}.
647 @comment regex.h
648 @comment POSIX.2
649 @item REG_EBRACE
650 The regular expression had unbalanced @samp{\@{} and @samp{\@}}.
652 @comment regex.h
653 @comment POSIX.2
654 @item REG_ERANGE
655 One of the endpoints in a range expression was invalid.
657 @comment regex.h
658 @comment POSIX.2
659 @item REG_ESPACE
660 @code{regcomp} ran out of memory.
661 @end table
663 @node Flags for POSIX Regexps
664 @subsection Flags for POSIX Regular Expressions
666 These are the bit flags that you can use in the @var{cflags} operand when
667 compiling a regular expression with @code{regcomp}.
669 @table @code
670 @comment regex.h
671 @comment POSIX.2
672 @item REG_EXTENDED
673 Treat the pattern as an extended regular expression, rather than as a
674 basic regular expression.
676 @comment regex.h
677 @comment POSIX.2
678 @item REG_ICASE
679 Ignore case when matching letters.
681 @comment regex.h
682 @comment POSIX.2
683 @item REG_NOSUB
684 Don't bother storing the contents of the @var{matches-ptr} array.
686 @comment regex.h
687 @comment POSIX.2
688 @item REG_NEWLINE
689 Treat a newline in @var{string} as dividing @var{string} into multiple
690 lines, so that @samp{$} can match before the newline and @samp{^} can
691 match after.  Also, don't permit @samp{.} to match a newline, and don't
692 permit @samp{[^@dots{}]} to match a newline.
694 Otherwise, newline acts like any other ordinary character.
695 @end table
697 @node Matching POSIX Regexps
698 @subsection Matching a Compiled POSIX Regular Expression
700 Once you have compiled a regular expression, as described in @ref{POSIX
701 Regexp Compilation}, you can match it against strings using
702 @code{regexec}.  A match anywhere inside the string counts as success,
703 unless the regular expression contains anchor characters (@samp{^} or
704 @samp{$}).
706 @comment regex.h
707 @comment POSIX.2
708 @deftypefun int regexec (regex_t *@var{compiled}, char *@var{string}, size_t @var{nmatch}, regmatch_t @var{matchptr} @t{[]}, int @var{eflags})
709 This function tries to match the compiled regular expression
710 @code{*@var{compiled}} against @var{string}.
712 @code{regexec} returns @code{0} if the regular expression matches;
713 otherwise, it returns a nonzero value.  See the table below for
714 what nonzero values mean.  You can use @code{regerror} to produce an
715 error message string describing the reason for a nonzero value;
716 see @ref{Regexp Cleanup}.
718 The argument @var{eflags} is a word of bit flags that enable various
719 options.
721 If you want to get information about what part of @var{string} actually
722 matched the regular expression or its subexpressions, use the arguments
723 @var{matchptr} and @var{nmatch}.  Otherwise, pass @code{0} for
724 @var{nmatch}, and @code{NULL} for @var{matchptr}.  @xref{Regexp
725 Subexpressions}.
726 @end deftypefun
728 You must match the regular expression with the same set of current
729 locales that were in effect when you compiled the regular expression.
731 The function @code{regexec} accepts the following flags in the
732 @var{eflags} argument:
734 @table @code
735 @comment regex.h
736 @comment POSIX.2
737 @item REG_NOTBOL
738 Do not regard the beginning of the specified string as the beginning of
739 a line; more generally, don't make any assumptions about what text might
740 precede it.
742 @comment regex.h
743 @comment POSIX.2
744 @item REG_NOTEOL
745 Do not regard the end of the specified string as the end of a line; more
746 generally, don't make any assumptions about what text might follow it.
747 @end table
749 Here are the possible nonzero values that @code{regexec} can return:
751 @table @code
752 @comment regex.h
753 @comment POSIX.2
754 @item REG_NOMATCH
755 The pattern didn't match the string.  This isn't really an error.
757 @comment regex.h
758 @comment POSIX.2
759 @item REG_ESPACE
760 @code{regexec} ran out of memory.
761 @end table
763 @node Regexp Subexpressions
764 @subsection Match Results with Subexpressions
766 When @code{regexec} matches parenthetical subexpressions of
767 @var{pattern}, it records which parts of @var{string} they match.  It
768 returns that information by storing the offsets into an array whose
769 elements are structures of type @code{regmatch_t}.  The first element of
770 the array (index @code{0}) records the part of the string that matched
771 the entire regular expression.  Each other element of the array records
772 the beginning and end of the part that matched a single parenthetical
773 subexpression.
775 @comment regex.h
776 @comment POSIX.2
777 @deftp {Data Type} regmatch_t
778 This is the data type of the @var{matcharray} array that you pass to
779 @code{regexec}.  It contains two structure fields, as follows:
781 @table @code
782 @item rm_so
783 The offset in @var{string} of the beginning of a substring.  Add this
784 value to @var{string} to get the address of that part.
786 @item rm_eo
787 The offset in @var{string} of the end of the substring.
788 @end table
789 @end deftp
791 @comment regex.h
792 @comment POSIX.2
793 @deftp {Data Type} regoff_t
794 @code{regoff_t} is an alias for another signed integer type.
795 The fields of @code{regmatch_t} have type @code{regoff_t}.
796 @end deftp
798 The @code{regmatch_t} elements correspond to subexpressions
799 positionally; the first element (index @code{1}) records where the first
800 subexpression matched, the second element records the second
801 subexpression, and so on.  The order of the subexpressions is the order
802 in which they begin.
804 When you call @code{regexec}, you specify how long the @var{matchptr}
805 array is, with the @var{nmatch} argument.  This tells @code{regexec} how
806 many elements to store.  If the actual regular expression has more than
807 @var{nmatch} subexpressions, then you won't get offset information about
808 the rest of them.  But this doesn't alter whether the pattern matches a
809 particular string or not.
811 If you don't want @code{regexec} to return any information about where
812 the subexpressions matched, you can either supply @code{0} for
813 @var{nmatch}, or use the flag @code{REG_NOSUB} when you compile the
814 pattern with @code{regcomp}.
816 @node Subexpression Complications
817 @subsection Complications in Subexpression Matching
819 Sometimes a subexpression matches a substring of no characters.  This
820 happens when @samp{f\(o*\)} matches the string @samp{fum}.  (It really
821 matches just the @samp{f}.)  In this case, both of the offsets identify
822 the point in the string where the null substring was found.  In this
823 example, the offsets are both @code{1}.
825 Sometimes the entire regular expression can match without using some of
826 its subexpressions at all---for example, when @samp{ba\(na\)*} matches the
827 string @samp{ba}, the parenthetical subexpression is not used.  When
828 this happens, @code{regexec} stores @code{-1} in both fields of the
829 element for that subexpression.
831 Sometimes matching the entire regular expression can match a particular
832 subexpression more than once---for example, when @samp{ba\(na\)*}
833 matches the string @samp{bananana}, the parenthetical subexpression
834 matches three times.  When this happens, @code{regexec} usually stores
835 the offsets of the last part of the string that matched the
836 subexpression.  In the case of @samp{bananana}, these offsets are
837 @code{6} and @code{8}.
839 But the last match is not always the one that is chosen.  It's more
840 accurate to say that the last @emph{opportunity} to match is the one
841 that takes precedence.  What this means is that when one subexpression
842 appears within another, then the results reported for the inner
843 subexpression reflect whatever happened on the last match of the outer
844 subexpression.  For an example, consider @samp{\(ba\(na\)*s \)*} matching
845 the string @samp{bananas bas }.  The last time the inner expression
846 actually matches is near the end of the first word.  But it is
847 @emph{considered} again in the second word, and fails to match there.
848 @code{regexec} reports nonuse of the ``na'' subexpression.
850 Another place where this rule applies is when the regular expression
851 @smallexample
852 \(ba\(na\)*s \|nefer\(ti\)* \)*
853 @end smallexample
854 @noindent
855 matches @samp{bananas nefertiti}.  The ``na'' subexpression does match
856 in the first word, but it doesn't match in the second word because the
857 other alternative is used there.  Once again, the second repetition of
858 the outer subexpression overrides the first, and within that second
859 repetition, the ``na'' subexpression is not used.  So @code{regexec}
860 reports nonuse of the ``na'' subexpression.
862 @node Regexp Cleanup
863 @subsection POSIX Regexp Matching Cleanup
865 When you are finished using a compiled regular expression, you can
866 free the storage it uses by calling @code{regfree}.
868 @comment regex.h
869 @comment POSIX.2
870 @deftypefun void regfree (regex_t *@var{compiled})
871 Calling @code{regfree} frees all the storage that @code{*@var{compiled}}
872 points to.  This includes various internal fields of the @code{regex_t}
873 structure that aren't documented in this manual.
875 @code{regfree} does not free the object @code{*@var{compiled}} itself.
876 @end deftypefun
878 You should always free the space in a @code{regex_t} structure with
879 @code{regfree} before using the structure to compile another regular
880 expression.
882 When @code{regcomp} or @code{regexec} reports an error, you can use
883 the function @code{regerror} to turn it into an error message string.
885 @comment regex.h
886 @comment POSIX.2
887 @deftypefun size_t regerror (int @var{errcode}, regex_t *@var{compiled}, char *@var{buffer}, size_t @var{length})
888 This function produces an error message string for the error code
889 @var{errcode}, and stores the string in @var{length} bytes of memory
890 starting at @var{buffer}.  For the @var{compiled} argument, supply the
891 same compiled regular expression structure that @code{regcomp} or
892 @code{regexec} was working with when it got the error.  Alternatively,
893 you can supply @code{NULL} for @var{compiled}; you will still get a
894 meaningful error message, but it might not be as detailed.
896 If the error message can't fit in @var{length} bytes (including a
897 terminating null character), then @code{regerror} truncates it.
898 The string that @code{regerror} stores is always null-terminated
899 even if it has been truncated.
901 The return value of @code{regerror} is the minimum length needed to
902 store the entire error message.  If this is less than @var{length}, then
903 the error message was not truncated, and you can use it.  Otherwise, you
904 should call @code{regerror} again with a larger buffer.
906 Here is a function which uses @code{regerror}, but always dynamically
907 allocates a buffer for the error message:
909 @smallexample
910 char *get_regerror (int errcode, regex_t *compiled)
912   size_t length = regerror (errcode, compiled, NULL, 0);
913   char *buffer = xmalloc (length);
914   (void) regerror (errcode, compiled, buffer, length);
915   return buffer;
917 @end smallexample
918 @end deftypefun
920 @c !!!! this is not actually in the library....
921 @node Word Expansion
922 @section Shell-Style Word Expansion
923 @cindex word expansion
924 @cindex expansion of shell words
926 @dfn{Word expansion} means the process of splitting a string into
927 @dfn{words} and substituting for variables, commands, and wildcards
928 just as the shell does.
930 For example, when you write @samp{ls -l foo.c}, this string is split
931 into three separate words---@samp{ls}, @samp{-l} and @samp{foo.c}.
932 This is the most basic function of word expansion.
934 When you write @samp{ls *.c}, this can become many words, because
935 the word @samp{*.c} can be replaced with any number of file names.
936 This is called @dfn{wildcard expansion}, and it is also a part of
937 word expansion.
939 When you use @samp{echo $PATH} to print your path, you are taking
940 advantage of @dfn{variable substitution}, which is also part of word
941 expansion.
943 Ordinary programs can perform word expansion just like the shell by
944 calling the library function @code{wordexp}.
946 @menu
947 * Expansion Stages::    What word expansion does to a string.
948 * Calling Wordexp::     How to call @code{wordexp}.
949 * Flags for Wordexp::   Options you can enable in @code{wordexp}.
950 * Wordexp Example::     A sample program that does word expansion.
951 @end menu
953 @node Expansion Stages
954 @subsection The Stages of Word Expansion
956 When word expansion is applied to a sequence of words, it performs the
957 following transformations in the order shown here:
959 @enumerate
960 @item
961 @cindex tilde expansion
962 @dfn{Tilde expansion}: Replacement of @samp{~foo} with the name of
963 the home directory of @samp{foo}.
965 @item
966 Next, three different transformations are applied in the same step,
967 from left to right:
969 @itemize @bullet
970 @item
971 @cindex variable substitution
972 @cindex substitution of variables and commands
973 @dfn{Variable substitution}: Environment variables are substituted for
974 references such as @samp{$foo}.
976 @item
977 @cindex command substitution
978 @dfn{Command substitution}: Constructs such as @w{@samp{`cat foo`}} and
979 the equivalent @w{@samp{$(cat foo)}} are replaced with the output from
980 the inner command.
982 @item
983 @cindex arithmetic expansion
984 @dfn{Arithmetic expansion}: Constructs such as @samp{$(($x-1))} are
985 replaced with the result of the arithmetic computation.
986 @end itemize
988 @item
989 @cindex field splitting
990 @dfn{Field splitting}: subdivision of the text into @dfn{words}.
992 @item
993 @cindex wildcard expansion
994 @dfn{Wildcard expansion}: The replacement of a construct such as @samp{*.c}
995 with a list of @samp{.c} file names.  Wildcard expansion applies to an
996 entire word at a time, and replaces that word with 0 or more file names
997 that are themselves words.
999 @item
1000 @cindex quote removal
1001 @cindex removal of quotes
1002 @dfn{Quote removal}: The deletion of string-quotes, now that they have
1003 done their job by inhibiting the above transformations when appropriate.
1004 @end enumerate
1006 For the details of these transformations, and how to write the constructs
1007 that use them, see @w{@cite{The BASH Manual}} (to appear).
1009 @node Calling Wordexp
1010 @subsection Calling @code{wordexp}
1012 All the functions, constants and data types for word expansion are
1013 declared in the header file @file{wordexp.h}.
1015 Word expansion produces a vector of words (strings).  To return this
1016 vector, @code{wordexp} uses a special data type, @code{wordexp_t}, which
1017 is a structure.  You pass @code{wordexp} the address of the structure,
1018 and it fills in the structure's fields to tell you about the results.
1020 @comment wordexp.h
1021 @comment POSIX.2
1022 @deftp {Data Type} {wordexp_t}
1023 This data type holds a pointer to a word vector.  More precisely, it
1024 records both the address of the word vector and its size.
1026 @table @code
1027 @item we_wordc
1028 The number of elements in the vector.
1030 @item we_wordv
1031 The address of the vector.  This field has type @w{@code{char **}}.
1033 @item we_offs
1034 The offset of the first real element of the vector, from its nominal
1035 address in the @code{we_wordv} field.  Unlike the other fields, this
1036 is always an input to @code{wordexp}, rather than an output from it.
1038 If you use a nonzero offset, then that many elements at the beginning of
1039 the vector are left empty.  (The @code{wordexp} function fills them with
1040 null pointers.)
1042 The @code{we_offs} field is meaningful only if you use the
1043 @code{WRDE_DOOFFS} flag.  Otherwise, the offset is always zero
1044 regardless of what is in this field, and the first real element comes at
1045 the beginning of the vector.
1046 @end table
1047 @end deftp
1049 @comment wordexp.h
1050 @comment POSIX.2
1051 @deftypefun int wordexp (const char *@var{words}, wordexp_t *@var{word-vector-ptr}, int @var{flags})
1052 Perform word expansion on the string @var{words}, putting the result in
1053 a newly allocated vector, and store the size and address of this vector
1054 into @code{*@var{word-vector-ptr}}.  The argument @var{flags} is a
1055 combination of bit flags; see @ref{Flags for Wordexp}, for details of
1056 the flags.
1058 You shouldn't use any of the characters @samp{|&;<>} in the string
1059 @var{words} unless they are quoted; likewise for newline.  If you use
1060 these characters unquoted, you will get the @code{WRDE_BADCHAR} error
1061 code.  Don't use parentheses or braces unless they are quoted or part of
1062 a word expansion construct.  If you use quotation characters @samp{'"`},
1063 they should come in pairs that balance.
1065 The results of word expansion are a sequence of words.  The function
1066 @code{wordexp} allocates a string for each resulting word, then
1067 allocates a vector of type @code{char **} to store the addresses of
1068 these strings.  The last element of the vector is a null pointer.
1069 This vector is called the @dfn{word vector}.
1071 To return this vector, @code{wordexp} stores both its address and its
1072 length (number of elements, not counting the terminating null pointer)
1073 into @code{*@var{word-vector-ptr}}.
1075 If @code{wordexp} succeeds, it returns 0.  Otherwise, it returns one
1076 of these error codes:
1078 @table @code
1079 @comment wordexp.h
1080 @comment POSIX.2
1081 @item WRDE_BADCHAR
1082 The input string @var{words} contains an unquoted invalid character such
1083 as @samp{|}.
1085 @comment wordexp.h
1086 @comment POSIX.2
1087 @item WRDE_BADVAL
1088 The input string refers to an undefined shell variable, and you used the flag
1089 @code{WRDE_UNDEF} to forbid such references.
1091 @comment wordexp.h
1092 @comment POSIX.2
1093 @item WRDE_CMDSUB
1094 The input string uses command substitution, and you used the flag
1095 @code{WRDE_NOCMD} to forbid command substitution.
1097 @comment wordexp.h
1098 @comment POSIX.2
1099 @item WRDE_NOSPACE
1100 It was impossible to allocate memory to hold the result.  In this case,
1101 @code{wordexp} can store part of the results---as much as it could
1102 allocate room for.
1104 @comment wordexp.h
1105 @comment POSIX.2
1106 @item WRDE_SYNTAX
1107 There was a syntax error in the input string.  For example, an unmatched
1108 quoting character is a syntax error.
1109 @end table
1110 @end deftypefun
1112 @comment wordexp.h
1113 @comment POSIX.2
1114 @deftypefun void wordfree (wordexp_t *@var{word-vector-ptr})
1115 Free the storage used for the word-strings and vector that
1116 @code{*@var{word-vector-ptr}} points to.  This does not free the
1117 structure @code{*@var{word-vector-ptr}} itself---only the other
1118 data it points to.
1119 @end deftypefun
1121 @node Flags for Wordexp
1122 @subsection Flags for Word Expansion
1124 This section describes the flags that you can specify in the
1125 @var{flags} argument to @code{wordexp}.  Choose the flags you want,
1126 and combine them with the C operator @code{|}.
1128 @table @code
1129 @comment wordexp.h
1130 @comment POSIX.2
1131 @item WRDE_APPEND
1132 Append the words from this expansion to the vector of words produced by
1133 previous calls to @code{wordexp}.  This way you can effectively expand
1134 several words as if they were concatenated with spaces between them.
1136 In order for appending to work, you must not modify the contents of the
1137 word vector structure between calls to @code{wordexp}.  And, if you set
1138 @code{WRDE_DOOFFS} in the first call to @code{wordexp}, you must also
1139 set it when you append to the results.
1141 @comment wordexp.h
1142 @comment POSIX.2
1143 @item WRDE_DOOFFS
1144 Leave blank slots at the beginning of the vector of words.
1145 The @code{we_offs} field says how many slots to leave.
1146 The blank slots contain null pointers.
1148 @comment wordexp.h
1149 @comment POSIX.2
1150 @item WRDE_NOCMD
1151 Don't do command substitution; if the input requests command substitution,
1152 report an error.
1154 @comment wordexp.h
1155 @comment POSIX.2
1156 @item WRDE_REUSE
1157 Reuse a word vector made by a previous call to @code{wordexp}.
1158 Instead of allocating a new vector of words, this call to @code{wordexp}
1159 will use the vector that already exists (making it larger if necessary).
1161 Note that the vector may move, so it is not safe to save an old pointer
1162 and use it again after calling @code{wordexp}.  You must fetch
1163 @code{we_pathv} anew after each call.
1165 @comment wordexp.h
1166 @comment POSIX.2
1167 @item WRDE_SHOWERR
1168 Do show any error messages printed by commands run by command substitution.
1169 More precisely, allow these commands to inherit the standard error output
1170 stream of the current process.  By default, @code{wordexp} gives these
1171 commands a standard error stream that discards all output.
1173 @comment wordexp.h
1174 @comment POSIX.2
1175 @item WRDE_UNDEF
1176 If the input refers to a shell variable that is not defined, report an
1177 error.
1178 @end table
1180 @node Wordexp Example
1181 @subsection @code{wordexp} Example
1183 Here is an example of using @code{wordexp} to expand several strings
1184 and use the results to run a shell command.  It also shows the use of
1185 @code{WRDE_APPEND} to concatenate the expansions and of @code{wordfree}
1186 to free the space allocated by @code{wordexp}.
1188 @smallexample
1190 expand_and_execute (const char *program, const char *options)
1192   wordexp_t result;
1193   pid_t pid
1194   int status, i;
1196   /* @r{Expand the string for the program to run.}  */
1197   switch (wordexp (program, &result, 0))
1198     @{
1199     case 0:                     /* @r{Successful}.  */
1200       break;
1201     case WRDE_NOSPACE:
1202       /* @r{If the error was @code{WRDE_NOSPACE},}
1203          @r{then perhaps part of the result was allocated.}  */
1204       wordfree (&result);
1205     default:                    /* @r{Some other error.}  */
1206       return -1;
1207     @}
1209   /* @r{Expand the strings specified for the arguments.}  */
1210   for (i = 0; args[i]; i++)
1211     @{
1212       if (wordexp (options, &result, WRDE_APPEND))
1213         @{
1214           wordfree (&result);
1215           return -1;
1216         @}
1217     @}
1219   pid = fork ();
1220   if (pid == 0)
1221     @{
1222       /* @r{This is the child process.  Execute the command.} */
1223       execv (result.we_wordv[0], result.we_wordv);
1224       exit (EXIT_FAILURE);
1225     @}
1226   else if (pid < 0)
1227     /* @r{The fork failed.  Report failure.}  */
1228     status = -1;
1229   else
1230     /* @r{This is the parent process.  Wait for the child to complete.}  */
1231     if (waitpid (pid, &status, 0) != pid)
1232       status = -1;
1234   wordfree (&result);
1235   return status;
1237 @end smallexample
1240 @c No sense finishing this for here.
1241 @ignore
1242 @node Tilde Expansion
1243 @subsection Details of Tilde Expansion
1245 It's a standard part of shell syntax that you can use @samp{~} at the
1246 beginning of a file name to stand for your own home directory.  You
1247 can use @samp{~@var{user}} to stand for @var{user}'s home directory.
1249 @dfn{Tilde expansion} is the process of converting these abbreviations
1250 to the directory names that they stand for.
1252 Tilde expansion applies to the @samp{~} plus all following characters up
1253 to whitespace or a slash.  It takes place only at the beginning of a
1254 word, and only if none of the characters to be transformed is quoted in
1255 any way.
1257 Plain @samp{~} uses the value of the environment variable @code{HOME}
1258 as the proper home directory name.  @samp{~} followed by a user name
1259 uses @code{getpwname} to look up that user in the user database, and
1260 uses whatever directory is recorded there.  Thus, @samp{~} followed
1261 by your own name can give different results from plain @samp{~}, if
1262 the value of @code{HOME} is not really your home directory.
1264 @node Variable Substitution
1265 @subsection Details of Variable Substitution
1267 Part of ordinary shell syntax is the use of @samp{$@var{variable}} to
1268 substitute the value of a shell variable into a command.  This is called
1269 @dfn{variable substitution}, and it is one part of doing word expansion.
1271 There are two basic ways you can write a variable reference for
1272 substitution:
1274 @table @code
1275 @item $@{@var{variable}@}
1276 If you write braces around the variable name, then it is completely
1277 unambiguous where the variable name ends.  You can concatenate
1278 additional letters onto the end of the variable value by writing them
1279 immediately after the close brace.  For example, @samp{$@{foo@}s}
1280 expands into @samp{tractors}.
1282 @item $@var{variable}
1283 If you do not put braces around the variable name, then the variable
1284 name consists of all the alphanumeric characters and underscores that
1285 follow the @samp{$}.  The next punctuation character ends the variable
1286 name.  Thus, @samp{$foo-bar} refers to the variable @code{foo} and expands
1287 into @samp{tractor-bar}.
1288 @end table
1290 When you use braces, you can also use various constructs to modify the
1291 value that is substituted, or test it in various ways.
1293 @table @code
1294 @item $@{@var{variable}:-@var{default}@}
1295 Substitute the value of @var{variable}, but if that is empty or
1296 undefined, use @var{default} instead.
1298 @item $@{@var{variable}:=@var{default}@}
1299 Substitute the value of @var{variable}, but if that is empty or
1300 undefined, use @var{default} instead and set the variable to
1301 @var{default}.
1303 @item $@{@var{variable}:?@var{message}@}
1304 If @var{variable} is defined and not empty, substitute its value.
1306 Otherwise, print @var{message} as an error message on the standard error
1307 stream, and consider word expansion a failure.
1309 @c ??? How does wordexp report such an error?
1311 @item $@{@var{variable}:+@var{replacement}@}
1312 Substitute @var{replacement}, but only if @var{variable} is defined and
1313 nonempty.  Otherwise, substitute nothing for this construct.
1314 @end table
1316 @table @code
1317 @item $@{#@var{variable}@}
1318 Substitute a numeral which expresses in base ten the number of
1319 characters in the value of @var{variable}.  @samp{$@{#foo@}} stands for
1320 @samp{7}, because @samp{tractor} is seven characters.
1321 @end table
1323 These variants of variable substitution let you remove part of the
1324 variable's value before substituting it.  The @var{prefix} and
1325 @var{suffix} are not mere strings; they are wildcard patterns, just
1326 like the patterns that you use to match multiple file names.  But
1327 in this context, they match against parts of the variable value
1328 rather than against file names.
1330 @table @code
1331 @item $@{@var{variable}%%@var{suffix}@}
1332 Substitute the value of @var{variable}, but first discard from that
1333 variable any portion at the end that matches the pattern @var{suffix}.
1335 If there is more than one alternative for how to match against
1336 @var{suffix}, this construct uses the longest possible match.
1338 Thus, @samp{$@{foo%%r*@}} substitutes @samp{t}, because the largest
1339 match for @samp{r*} at the end of @samp{tractor} is @samp{ractor}.
1341 @item $@{@var{variable}%@var{suffix}@}
1342 Substitute the value of @var{variable}, but first discard from that
1343 variable any portion at the end that matches the pattern @var{suffix}.
1345 If there is more than one alternative for how to match against
1346 @var{suffix}, this construct uses the shortest possible alternative.
1348 Thus, @samp{$@{foo%%r*@}} substitutes @samp{tracto}, because the shortest
1349 match for @samp{r*} at the end of @samp{tractor} is just @samp{r}.
1351 @item $@{@var{variable}##@var{prefix}@}
1352 Substitute the value of @var{variable}, but first discard from that
1353 variable any portion at the beginning that matches the pattern @var{prefix}.
1355 If there is more than one alternative for how to match against
1356 @var{prefix}, this construct uses the longest possible match.
1358 Thus, @samp{$@{foo%%r*@}} substitutes @samp{t}, because the largest
1359 match for @samp{r*} at the end of @samp{tractor} is @samp{ractor}.
1361 @item $@{@var{variable}#@var{prefix}@}
1362 Substitute the value of @var{variable}, but first discard from that
1363 variable any portion at the beginning that matches the pattern @var{prefix}.
1365 If there is more than one alternative for how to match against
1366 @var{prefix}, this construct uses the shortest possible alternative.
1368 Thus, @samp{$@{foo%%r*@}} substitutes @samp{tracto}, because the shortest
1369 match for @samp{r*} at the end of @samp{tractor} is just @samp{r}.
1371 @end ignore