Unix and Linux Discussions Tagged with regexp |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
4,607 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,938 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,871 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,228 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
13,786 |
Shell Programming and Scripting |
|
|
|
39 |
15,109 |
OS X (Apple) |
|
|
|
2 |
3,363 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
2,900 |
Shell Programming and Scripting |
|
|
|
3 |
2,440 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,533 |
Shell Programming and Scripting |
|
|
|
6 |
2,699 |
Shell Programming and Scripting |
|
|
|
7 |
23,854 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
7,899 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,617 |
Shell Programming and Scripting |
|
|
|
6 |
6,971 |
Shell Programming and Scripting |
|
|
|
7 |
5,105 |
Shell Programming and Scripting |
|
|
|
1 |
1,776 |
Shell Programming and Scripting |
|
|
|
8 |
4,986 |
Shell Programming and Scripting |
|
|
|
7 |
5,874 |
Shell Programming and Scripting |
|
|
|
5 |
3,823 |
Shell Programming and Scripting |
|
|
|
2 |
2,148 |
Shell Programming and Scripting |
|
|
|
2 |
2,694 |
Shell Programming and Scripting |
|
|
|
2 |
5,589 |
Shell Programming and Scripting |
|
|
|
15 |
4,711 |
Shell Programming and Scripting |
|
|
|
3 |
2,422 |
Shell Programming and Scripting |
|
|
|
2 |
2,578 |
Shell Programming and Scripting |
|
|
|
2 |
4,324 |
Shell Programming and Scripting |
|
|
|
2 |
5,533 |
Shell Programming and Scripting |
|
|
|
1 |
9,032 |
Shell Programming and Scripting |
|
|
|
8 |
5,149 |
Shell Programming and Scripting |
|
|
|
4 |
4,276 |
Programming |
|
|
|
7 |
4,465 |
Shell Programming and Scripting |
|
|
|
2 |
2,439 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,468 |
Shell Programming and Scripting |
|
|
|
6 |
3,650 |
Shell Programming and Scripting |
|
|
|
1 |
7,902 |
UNIX for Dummies Questions & Answers |
PPI::Token::Regexp::Match(3) User Contributed Perl Documentation PPI::Token::Regexp::Match(3)
NAME
PPI::Token::Regexp::Match - A standard pattern match regex
INHERITANCE
PPI::Token::Regexp::Match
isa PPI::Token::Regexp
isa PPI::Token
isa PPI::Element
SYNOPSIS
$text =~ m/match regexp/;
$text =~ /match regexp/;
DESCRIPTION
A "PPI::Token::Regexp::Match" object represents a single match regular expression. Just to be doubly clear, here are things that are and
aren't considered a match regexp.
# Is a match regexp
/This is a match regexp/;
m/Old McDonald had a farm/eieio;
# These are NOT match regexp
qr/This is a regexp quote-like operator/;
s/This is a/replace regexp/;
METHODS
There are no methods available for "PPI::Token::Regexp::Match" beyond those provided by the parent PPI::Token::Regexp, PPI::Token and
PPI::Element classes.
Got any ideas for methods? Submit a report to rt.cpan.org!
SUPPORT
See the support section in the main module.
AUTHOR
Adam Kennedy <adamk@cpan.org>
COPYRIGHT
Copyright 2001 - 2011 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl v5.18.2 2011-02-25 PPI::Token::Regexp::Match(3)