Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



Text::Glob(3)                        User Contributed Perl Documentation                       Text::Glob(3)



NAME
       Text::Glob - match globbing patterns against text

SYNOPSIS
        use Text::Glob qw( match_glob glob_to_regex );

        print "matched\n" if match_glob( "foo.*", "foo.bar" );

        # prints foo.bar and foo.baz
        my $regex = glob_to_regex( "foo.*" );
        for ( qw( foo.bar foo.baz foo bar ) ) {
            print "matched: $_\n" if /$regex/;
        }

DESCRIPTION
       Text::Glob implements glob(3) style matching that can be used to match against text, rather than
       fetching names from a filesystem.  If you want to do full file globbing use the File::Glob module
       instead.

   Routines
       match_glob( $glob, @things_to_test )
           Returns the list of things which match the glob from the source list.

       glob_to_regex( $glob )
           Returns a compiled regex which is the equivalent of the globbing pattern.

       glob_to_regex_string( $glob )
           Returns a regex string which is the equivalent of the globbing pattern.

SYNTAX
       The following metacharacters and rules are respected.

       "*" - match zero or more characters
           "a*" matches "a", "aa", "aaaa" and many many more.

       "?" - match exactly one character
           "a?" matches "aa", but not "a", or "aaa"

       Character sets/ranges
           "example.[ch]" matches "example.c" and "example.h"

           "demo.[a-c]" matches "demo.a", "demo.b", and "demo.c"

       alternation
           "example.{foo,bar,baz}" matches "example.foo", "example.bar", and "example.baz"

       leading . must be explictly matched
           "*.foo" does not match ".bar.foo".  For this you must either specify the leading . in the glob
           pattern (".*.foo"), or set $Text::Glob::strict_leading_dot to a false value while compiling the
           regex.

       "*" and "?" do not match /
           "*.foo" does not match "bar/baz.foo".  For this you must either explicitly match the / in the
           glob ("*/*.foo"), or set $Text::Glob::strict_wildcard_slash to a false value with compiling the
           regex.

BUGS
       The code uses qr// to produce compiled regexes, therefore this module requires perl version 5.005_03
       or newer.

AUTHOR
       Richard Clamp <richardc@unixbeard.net>

COPYRIGHT
       Copyright (C) 2002, 2003, 2006, 2007 Richard Clamp.  All Rights Reserved.

       This module is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

SEE ALSO
       File::Glob, glob(3)



perl v5.16.2                                     2013-08-25                                    Text::Glob(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.