Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ppix::regexp::token::interpolation(3pm) [debian man page]

PPIx::Regexp::Token::Interpolation(3pm) 		User Contributed Perl Documentation		   PPIx::Regexp::Token::Interpolation(3pm)

NAME
PPIx::Regexp::Token::Interpolation - Represent an interpolation in the PPIx::Regexp package. SYNOPSIS
use PPIx::Regexp::Dumper; PPIx::Regexp::Dumper->new('qr{$foo}smx')->print(); INHERITANCE
"PPIx::Regexp::Token::Interpolation" is a PPIx::Regexp::Token::Code. "PPIx::Regexp::Token::Interpolation" has no descendants. DESCRIPTION
This class represents a variable interpolation into a regular expression. In the "SYNOPSIS" the $foo would be represented by an object of this class. METHODS
This class provides no public methods beyond those provided by its superclass. ppi This convenience method returns the PPI::Document representing the content. This document should be considered read only. Note that the content of the returned PPI::Document may not be the same as the content of the original "PPIx::Regexp::Token::Interpolation". This can happen because interpolated variable names may be enclosed in curly brackets, but this does not happen in normal code. For example, in "/${foo}bar/", the content of the "PPIx::Regexp::Token::Interpolation" object will be '${foo}', but the content of the "PPI::Document" will be '$foo'. SUPPORT
Support is by the author. Please file bug reports at <http://rt.cpan.org>, or in electronic mail to the author. AUTHOR
Thomas R. Wyant, III wyant at cpan dot org COPYRIGHT AND LICENSE
Copyright (C) 2009-2012 by Thomas R. Wyant, III This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.10.0. For more details, see the full text of the licenses in the directory LICENSES. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. perl v5.14.2 2012-06-06 PPIx::Regexp::Token::Interpolation(3pm)

Check Out this Related Man Page

PPIx::Regexp::Token::Backtrack(3pm)			User Contributed Perl Documentation		       PPIx::Regexp::Token::Backtrack(3pm)

NAME
PPIx::Regexp::Token::Backtrack - Represent backtrack control. SYNOPSIS
use PPIx::Regexp::Dumper; PPIx::Regexp::Dumper->new( 'qr{(*ACCEPT)}smx' ) ->print(); INHERITANCE
"PPIx::Regexp::Token::Backtrack" is a PPIx::Regexp::Token. "PPIx::Regexp::Token::Backtrack" has no descendants. DESCRIPTION
This class represents one of the backtrack controls. METHODS
This class provides no public methods beyond those provided by its superclass. SUPPORT
Support is by the author. Please file bug reports at <http://rt.cpan.org>, or in electronic mail to the author. AUTHOR
Thomas R. Wyant, III wyant at cpan dot org COPYRIGHT AND LICENSE
Copyright (C) 2009-2012 by Thomas R. Wyant, III This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.10.0. For more details, see the full text of the licenses in the directory LICENSES. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. perl v5.14.2 2012-06-06 PPIx::Regexp::Token::Backtrack(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Formating/inserting the content

Hi All, I have a two different files with below informations. First file contains the content are as below: Second file contents are as below: Now the problem is i need to insert the respective file name and status infomration from the second file into the first file exactly next to... (7 Replies)
Discussion started by: vino_hymi
7 Replies

2. Shell Programming and Scripting

Interpolation using awk

Hi all, Consider I have a text file containing: 1003 60 1005 80 1100 110 Based on that file I need to create another file which is containing value from 1001 till 1100 which is a linear interpolation between two point (for 1004; 1006;1007 until 1109) and extrapolation based on 2... (7 Replies)
Discussion started by: ardy_yana
7 Replies

3. Shell Programming and Scripting

Expand & Interpolation

Dear All, I have input like this, infile: 10 464310.16 20 464309.44 30 464309.02 40 464316.93 ... ... Desired output per step: out_step01: 10 464310.16 11 12 13 14 (9 Replies)
Discussion started by: attila
9 Replies

4. Shell Programming and Scripting

Linear Interpolation of CSV Columnar Data

I am trying to perform linear interpolation on three columns in a CSV file. When I run this code, I do not get any changes in the output (see Expected Output). What am I doing wrong here? Awk Code ' function interpolate(lat1, lon1, t1, lat2, lon2, t2, i) { for (i = 1; i... (2 Replies)
Discussion started by: hrrruser
2 Replies