Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ppix::regexp::structure::switch(3) [centos man page]

PPIx::Regexp::Structure::Switch(3)			User Contributed Perl Documentation			PPIx::Regexp::Structure::Switch(3)

NAME
PPIx::Regexp::Structure::Switch - Represent a switch SYNOPSIS
use PPIx::Regexp::Dumper; PPIx::Regexp::Dumper->new( 'qr{(?(1)foo|bar)}smx' ) ->print(); INHERITANCE
"PPIx::Regexp::Structure::Switch" is a PPIx::Regexp::Structure. "PPIx::Regexp::Structure::Switch" has no descendants. DESCRIPTION
This class represents a switch, or conditional expression. The condition will be the first child. 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-2013 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.16.3 2014-06-10 PPIx::Regexp::Structure::Switch(3)

Check Out this Related Man Page

PPIx::Regexp::Structure::Subexpression(3)		User Contributed Perl Documentation		 PPIx::Regexp::Structure::Subexpression(3)

NAME
PPIx::Regexp::Structure::Subexpression - Represent an independent subexpression SYNOPSIS
use PPIx::Regexp::Dumper; PPIx::Regexp::Dumper->new( 'qr{foo(?>bar)}smx' ) ->print(); INHERITANCE
"PPIx::Regexp::Structure::Subexpression" is a PPIx::Regexp::Structure. "PPIx::Regexp::Structure::Subexpression" has no descendants. DESCRIPTION
This class represents an independent subexpression which must (says perlre) match at the current location. 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-2013 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.16.3 2014-06-10 PPIx::Regexp::Structure::Subexpression(3)
Man Page

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

User and Group Structure

I was asked to set up a unix system and i am at a loss. i need to know the best one for a small to medium sized business and how to go about setting up the uids and the guids for the network. what permissions i have available and such. (1 Reply)
Discussion started by: dwchapman
1 Replies

2. Programming

Comapilation error with Switch statement

Hello , How to resolve below compilation error.activity_type is a member of structure and the output from databse will be stored in structure.Expected output wil l be either D or N or C . sample struct format: struct a{ char acAtivity_type; } code: switch (a->activity_type)... (1 Reply)
Discussion started by: jagan_kalluri
1 Replies

3. Shell Programming and Scripting

Regexp help -- (a*)(b*|(ab)*) and (a*)((b|ab)*) on "aabab"

Hi all A regular expression question -- (a*)(b*|(ab)*) and (a*)((b|ab)*) on "aabab" First, (a*)(b*|(ab)*) on "aabab". I though it would match "aa-b". But it turns on "a-abab". So why isn't a* greedy here? Then I try (a*)((b|ab)*). It also matches aa-bab. But this time a* is greedy here.... (9 Replies)
Discussion started by: qiulang
9 Replies

4. AIX

HMC : Unable to Switch Tasks

i was trying to open terminal window from HMC its giving me the below message . Unable to Switch Tasks The task you want to switch to is an applet based task, which does not support 'Switch To'. Please use the window switching capabilities for local windows to 'Switch To' the window for... (4 Replies)
Discussion started by: thecobra151
4 Replies

5. UNIX for Dummies Questions & Answers

Switch and replace columns in a file

HP-UX I have a fixed length file like this 9921190625797AE2560 20091001US20091001@@NEWSITE @@ 20091013001X X 01NEW00DNA00007081 @@ SPRINGFIELD @@ ... (2 Replies)
Discussion started by: rs1969
2 Replies

6. What is on Your Mind?

A Regexp You Can Use Everywhere

¯\_(ツ)_/¯ bakunin (0 Replies)
Discussion started by: bakunin
0 Replies

7. Programming

Missing Logic Looping Through Switch Statement

Having trouble with the logic when looping over this switch case again: for (j = 0; data != 0; j++){ switch(data){ case 'c': output = ranit(r_brace_array); break; case 'h': output = ranit(pipe_array); break; ... (6 Replies)
Discussion started by: Azrael
6 Replies