Search results for "PINYAN"
Quine - extension for creating quines
This module simply prints the content of the program using the module. This type of program is called a "quine"....
PINYAN/Quine-1.01 - Jan 23, 2001 - Search in distribution
perlretut - Perl regular expressions tutorial
This page provides a basic tutorial on understanding, creating and using regular expressions in Perl. It serves as a complement to the reference page on regular expressions perlre. Regular expressions are an integral part of the "m//", "s///", "qr//"...
SHAY/perl-5.40.1 - Jan 18, 2025 - Search in distribution
perlfaq6 - Regular Expressions
This section is surprisingly small because the rest of the FAQ is littered with answers involving regular expressions. For example, decoding a URL and checking whether something is a number can be handled with regular expressions, but those answers a...
ETHER/perlfaq-5.20240218 - Feb 18, 2024 - Search in distribution
YAPE - Yet Another Parser/Extractor
The "YAPE" hierarchy of modules is an attempt at a unified means of parsing and extracting content. It attempts to maintain a generic interface, to promote simplicity and reusability. The API is powerful, yet simple. The modules do tokenization (whic...
PINYAN/YAPE-HTML-1.11 - Feb 06, 2001 - Search in distribution- YAPE::HTML - Yet Another Parser/Extractor for HTML
- YAPE::HTML::Element - sub-classes for YAPE::HTML elements
YAPE - Yet Another Parser/Extractor
The "YAPE" hierarchy of modules is an attempt at a unified means of parsing and extracting content. It attempts to maintain a generic interface, to promote simplicity and reusability. The API is powerful, yet simple. The modules do tokenization (whic...
GSULLIVAN/YAPE-Regex-4.00 - Feb 03, 2011 - Search in distribution- YAPE::Regex - Yet Another Parser/Extractor for Regular Expressions
- YAPE::Regex::Element - sub-classes for YAPE::Regex elements
POE::Component::IRC - A fully event-driven IRC client module
POE::Component::IRC is a POE component (who'd have guessed?) which acts as an easily controllable IRC client for your other POE components and sessions. You create an IRC component and tell it what events your session cares about and where to connect...
BINGOS/POE-Component-IRC-6.93 - Jun 15, 2021 - Search in distribution- POE::Component::IRC::Plugin::ISupport - A PoCo-IRC plugin that handles server capabilities
Data::Dump::Streamer - Accurately serialize a data structure as Perl code.
Given a list of scalars or reference variables, writes out their contents in perl syntax. The references can also be objects. The contents of each variable is output using the least number of Perl statements as convenient, usually only one. Self-refe...
YVES/Data-Dump-Streamer-2.42 - Feb 21, 2023 - Search in distribution
URI::Find - Find URIs in arbitrary text
This module does one thing: Finds URIs and URLs in plain text. It finds them quickly and it finds them all (or what URI.pm considers a URI to be.) It only finds URIs which include a scheme (http:// or the like), for something a bit less strict have a...
MSCHWERN/URI-Find-20160806 - Aug 06, 2016 - Search in distribution
Regexp::Parser - handlers for Perl 5 regexes
This module holds the init() method for the Regexp::Parser class, which installs all the handlers for standard Perl 5 regexes. This documentation contains a sub-classing tutorial....
TODDR/Regexp-Parser-0.23 - Jan 20, 2020 - Search in distribution- Regexp::Parser - base class for parsing regexes
- Regexp::Parser::__object__ - objects for Perl 5 regexes
Tie::Static - create static lexicals
This module makes it easy to produce static variables. A static variable is a variable whose value will remain constant from invocation to invocation. The usual way to produce this is to create an enclosing scope which contains a lexically scoped var...
TILLY/Tie-Static-0.04 - Apr 10, 2005 - Search in distribution
Array::Unique - Tie-able array that allows only unique values
This package lets you create an array which will allow only one occurrence of any value. In other words no matter how many times you put in 42 it will keep only the first occurrence and the rest will be dropped. You use the module via tie and once yo...
SZABGAB/Array-Unique-0.09 - May 29, 2023 - Search in distribution
Object::Pluggable - A base class for creating plugin-enabled objects
Object::Pluggable is a base class for creating plugin enabled objects. It is a generic port of POE::Component::IRC's plugin system. If your object dispatches events to listeners, then Object::Pluggable may be a good fit for you. Basic use would invol...
HINRIK/Object-Pluggable-1.29 - Oct 09, 2010 - Search in distribution- Object::Pluggable::Pipeline - The plugin pipeline for Object::Pluggable.
MooX::Role::Pluggable - A plugin pipeline for your Moo-based class
A Moo::Role for turning instances of your class into pluggable objects. Consumers of this role gain a plugin pipeline and methods to manipulate it, as well as a flexible dispatch system (see "_pluggable_process"). The logic and behavior is based almo...
AVENJ/MooX-Role-Pluggable-1.002002 - Jul 17, 2015 - Search in distribution
File::chmod - Implements symbolic and ls chmod modes
File::chmod is a utility that allows you to bypass system calls or bit processing of a file's permissions. It overloads the chmod() function with its own that gets an octal mode, a symbolic mode (see below), or an "ls" mode (see below). If you wish n...
XENO/File-chmod-0.42 - Feb 14, 2015 - Search in distribution
Regexp::Keep - filter to allow the \K escape in regexes
This allows you to use the "\K" escape in your regexes, which fools the regex engine into thinking it has only just started matching your regex. This means you can turn the inefficient replace-with-itself construct s/(save)delete/$1/; into the more e...
PINYAN/Regexp-Keep-0.02 - May 07, 2004 - Search in distribution
Tie::Autotie - Automatically ties underlying references
This module allows you to automatically tie data structures contained in a tied data structure. As an example: use Tie::Autotie 'Tie::IxHash'; tie my(%hash), 'Tie::IxHash'; $hash{jeff}{age} = 22; $hash{jeff}{lang} = 'Perl'; $hash{jeff}{brothers} = 3;...
PINYAN/Tie-Autotie-0.03 - May 25, 2006 - Search in distribution
Lexical::Alias - makes a lexical an alias for another variable
This module allows you to alias a lexical (declared with "my") variable to another variable (package or lexical). You will receive a fatal error if you try aliasing a scalar to something that is not a scalar (etc.). Parameter Swaping (new!) Version 0...
PINYAN/Lexical-Alias-0.04 - May 19, 2003 - Search in distribution
bitflags - Perl module for generating bit flags
The "bitflags" module allows you to form a set of unique bit flags, for ORing together. Think of the "O_" constants you get from "Fcntl"... that's the idea. Successive calls remember the previous power used, so you don't have to set a starting number...
PINYAN/bitflags-0.10 - Jul 20, 2000 - Search in distribution
String::Index - Perl XS module for strpbrk()/index() hybrids
This module provides four functions that are Perl/C hybrids. They allow you to scan a string for the first or last occurrence of any of a set of characters, or not of a set of characters. Exported on request There are four functions, which must be ex...
PINYAN/String-Index-0.02 - May 14, 2004 - Search in distribution