The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "PINYAN"

Quine - extension for creating quines River stage zero No dependents

This module simply prints the content of the program using the module. This type of program is called a "quine"....

PINYAN/Quine-1.01 - 23 Jan 2001 22:33:05 UTC - Search in distribution

perlretut - Perl regular expressions tutorial River stage five • 11292 direct dependents • 32664 total dependents

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//"...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC - Search in distribution
  • perlretut - Perl regular expressions tutorial

perlfaq6 - Regular Expressions River stage zero No dependents

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 - 18 Feb 2024 17:37:36 UTC - Search in distribution

YAPE - Yet Another Parser/Extractor River stage zero No dependents

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 - 06 Feb 2001 06:23:48 UTC - Search in distribution

YAPE - Yet Another Parser/Extractor River stage one • 3 direct dependents • 3 total dependents

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 - 03 Feb 2011 14:01:00 UTC - Search in distribution

IT::perlfaq6 River stage zero No dependents

ENRYS/POD2-IT-0.13 - 26 Aug 2009 16:35:44 UTC - Search in distribution

POE::Component::IRC - A fully event-driven IRC client module River stage three • 54 direct dependents • 109 total dependents

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 - 15 Jun 2021 18:29:10 UTC - Search in distribution

Data::Dump::Streamer - Accurately serialize a data structure as Perl code. River stage two • 22 direct dependents • 90 total dependents

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 - 21 Feb 2023 03:08:06 UTC - Search in distribution

URI::Find - Find URIs in arbitrary text River stage three • 36 direct dependents • 221 total dependents

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 - 06 Aug 2016 20:45:50 UTC - Search in distribution

Regexp::Parser - handlers for Perl 5 regexes River stage one • 1 direct dependent • 1 total dependent

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 - 20 Jan 2020 05:37:55 UTC - Search in distribution

Tie::Static - create static lexicals River stage one • 1 direct dependent • 1 total dependent

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 - 10 Apr 2005 06:22:03 UTC - Search in distribution

Array::Unique - Tie-able array that allows only unique values River stage one • 2 direct dependents • 5 total dependents

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 - 29 May 2023 17:29:18 UTC - Search in distribution

Object::Pluggable - A base class for creating plugin-enabled objects River stage three • 2 direct dependents • 115 total dependents

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 - 09 Oct 2010 02:51:50 UTC - Search in distribution

MooX::Role::Pluggable - A plugin pipeline for your Moo-based class River stage zero No dependents

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 - 17 Jul 2015 04:12:59 UTC - Search in distribution

File::chmod - Implements symbolic and ls chmod modes River stage two • 14 direct dependents • 57 total dependents

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 - 14 Feb 2015 23:29:24 UTC - Search in distribution

Regexp::Keep - filter to allow the \K escape in regexes River stage zero No dependents

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 - 07 May 2004 17:36:49 UTC - Search in distribution

Tie::Autotie - Automatically ties underlying references River stage one • 2 direct dependents • 3 total dependents

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 - 25 May 2006 16:34:01 UTC - Search in distribution

Lexical::Alias - makes a lexical an alias for another variable River stage one • 2 direct dependents • 2 total dependents

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 - 19 May 2003 15:17:15 UTC - Search in distribution

bitflags - Perl module for generating bit flags River stage zero No dependents

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 - 20 Jul 2000 15:15:45 UTC - Search in distribution

String::Index - Perl XS module for strpbrk()/index() hybrids River stage zero No dependents

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 - 14 May 2004 20:53:21 UTC - Search in distribution
35 results (0.033 seconds)