From 643bbe891207c15f7cd1d022177ec8c66ceb8acb Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 4 Oct 2001 23:51:36 +0000 Subject: [PATCH] Update. * glib/tmpl/patterns.sgml: Update. --- docs/reference/ChangeLog | 4 ++ docs/reference/glib/tmpl/patterns.sgml | 83 ++++++++++++++++++++-------------- 2 files changed, 53 insertions(+), 34 deletions(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index a48955c..ee1d3a3 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,5 +1,9 @@ 2001-10-05 Matthias Clasen + * glib/tmpl/patterns.sgml: Update. + +2001-10-05 Matthias Clasen + * glib/tmpl/hooks.sgml, glib/tmpl/spawn.sgml, glib/tmpl/macros_misc.sgml: Update. diff --git a/docs/reference/glib/tmpl/patterns.sgml b/docs/reference/glib/tmpl/patterns.sgml index 4d7923d..caae8ce 100644 --- a/docs/reference/glib/tmpl/patterns.sgml +++ b/docs/reference/glib/tmpl/patterns.sgml @@ -3,12 +3,25 @@ Glob-style pattern matching +Matches strings against patterns containing '*' and '?' wildcards. - +The g_pattern_match* match a string against +a pattern containing '*' and '?' wildcards with similar semantics +as the standard glob() function: '*' matches an +arbitrary, possibly empty, string, '?' matches an arbitrary character. + + +There is no way to include literal '*' or '?' characters in a pattern. + + +When multiple string must be matched against the same pattern, it +is better to compile the pattern to a #GPatternSpec using +g_pattern_spec_new() and use g_pattern_match_string() instead of +g_pattern_match_simple(). This avoids the overhead of repeated +pattern compilation. - @@ -16,72 +29,74 @@ Glob-style pattern matching - +Enumeration representing different kinds of patterns. This is only used +internally for optimizing the match algorithm. -@G_MATCH_ALL: -@G_MATCH_ALL_TAIL: -@G_MATCH_HEAD: -@G_MATCH_TAIL: -@G_MATCH_EXACT: +@G_MATCH_ALL: a general pattern. +@G_MATCH_ALL_TAIL: a general pattern which contains a fixed part matching +the end of the string. +@G_MATCH_HEAD: a pattern matching every string with a certain prefix. +@G_MATCH_TAIL: a pattern matching every string with a certain suffix. +@G_MATCH_EXACT: a pattern matching exactly one string. @G_MATCH_LAST: - +A GPatternSpec is the 'compiled' form of a pattern. +There should be no need to access its fields. -@match_type: -@pattern_length: -@pattern: -@pattern_reversed: +@match_type: the #GMatchType of the pattern. +@pattern_length: the length of the pattern. +@pattern: the pattern. Note that this may be different from the @pattern +used to construct this GPatternSpec. +@pattern_reversed: the reverse of @pattern. - +Compiles a pattern to a #GPatternSpec. -@pattern: -@Returns: +@pattern: a string. +@Returns: a newly-allocated #GPatternSpec. - +Frees the memory allocated for the #GPatternSpec. -@pspec: +@pspec: a #GPatternSpec. - +Matches a string against a compiled pattern. -@pspec: -@string_length: -@string: -@string_reversed: -@Returns: +@pspec: a #GPatternSpec. +@string_length: the length of @string. +@string: the string to match. +@string_reversed: the reverse of @string. +@Returns: %TRUE if @string matches @pspec. - +Matches a string against a compiled pattern. -@pspec: -@string: -@Returns: +@pspec: a #GPatternSpec. +@string: the string to match. +@Returns: %TRUE if @string matches @pspec. - +Matches a string against a pattern. -@pattern: -@string: -@Returns: - - +@pattern: the pattern. +@string: the string to match. +@Returns: %TRUE if @string matches @pspec. -- 2.7.4