Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



8.205. Text::Balanced


Extracts delimited text sequences from
strings. It implements various extract_-named
subroutines to capture the delimited string.

In a list context, all Text::Balanced methods return a list that
contains the extracted string with delimiters, the remainder of the
string, and the parts of the string that were skipped. Text::Balanced
is shipped with the Perl source kit as of 5.8.

Text::Balanced implements the following methods.

extract_bracketed


extract_bracketed(text, delimiter)

Extracts the initial substring of textthat is bracketed with delimiters specified by
delimiter. Note that
delimiter should contain one of
(), {}, [],
or <>.

extract_codeblock


extract_codeblock(text, delimiter)

Extracts the initial substring of textthat represents a block of Perl code. This code is specified by
delimiter, which contains one of
(), {}, [],
or <>.

extract_delimited


extract_delimited(text, delimiter)

Extracts the initial substring of textthat is delimited by two instances of
delimiter.

extract_multiple


extract_multple(text ...)

Extracts the initial substrings of textthat would be extracted by one or more sequential applications of the
specified functions.

extract_quotelike


extract_quotelike(text)

Extracts the quoted portion of text.

extract_tagged


extract_tagged(text, "TAG1", "TAG2", undef, nesting_allowed)

Extracts the initial substring of textthat is bounded by an HTML or XML tag:

# Extract HTML tags but don't allow <HTML> to be embedded
($extracted, $left) =
extract_tagged($text,"<HTML>","</HTML>",
undef,{bad=>["<HTML>"]});
extract_multiple($text, ...)

gen_delimited_pat


gen_delimited_pat(q{pattern})

Creates a string that represents the optimized pattern that matches a
substring delimited by q{
pattern}.



8.204. Text::Abbrev8.206. Text::ParseWords




Copyright © 2002 O'Reilly & Associates. All rights reserved.

/ 875