Info2: << Package: text-balanced-pm Version: 2.0.0 Revision: 11 Description: Extract delimited text sequences from strings Type: perl License: Artistic Maintainer: Benjamin Reed Depends: system-perl BuildDepends: system-perl Source: mirror:cpan:modules/by-module/Text/Text-Balanced-v%v.tar.gz Source-MD5: dfb395067cd332056e9c893f9b854f58 UpdatePOD: true NoPerlTests: true DocFiles: Changes MANIFEST README Homepage: http://search.cpan.org/dist/Text-Balanced DescDetail: << The various extract_... subroutines may be used to extract a delimited substring, possibly after skipping a specified prefix string. By default, that prefix is optional whitespace (/\s*/), but you can change it to whatever you wish (see below). The substring to be extracted must appear at the current pos location of the string's variable (or at index zero, if no pos position is defined). In other words, the extract_... subroutines don't extract the first occurance of a substring anywhere in a string (like an unanchored regex would). Rather, they extract an occurance of the substring appearing immediately at the current matching position in the string (like a \G-anchored regex would). << <<