Unix and Linux Discussions Tagged with regexp |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
4,489 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,815 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,794 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,135 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
13,763 |
Shell Programming and Scripting |
|
|
|
39 |
14,696 |
OS X (Apple) |
|
|
|
2 |
3,248 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
2,893 |
Shell Programming and Scripting |
|
|
|
3 |
2,324 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,527 |
Shell Programming and Scripting |
|
|
|
6 |
2,692 |
Shell Programming and Scripting |
|
|
|
7 |
23,802 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
7,885 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,614 |
Shell Programming and Scripting |
|
|
|
6 |
6,964 |
Shell Programming and Scripting |
|
|
|
7 |
5,086 |
Shell Programming and Scripting |
|
|
|
1 |
1,773 |
Shell Programming and Scripting |
|
|
|
8 |
4,976 |
Shell Programming and Scripting |
|
|
|
7 |
5,848 |
Shell Programming and Scripting |
|
|
|
5 |
3,818 |
Shell Programming and Scripting |
|
|
|
2 |
2,144 |
Shell Programming and Scripting |
|
|
|
2 |
2,690 |
Shell Programming and Scripting |
|
|
|
2 |
5,581 |
Shell Programming and Scripting |
|
|
|
15 |
4,702 |
Shell Programming and Scripting |
|
|
|
3 |
2,418 |
Shell Programming and Scripting |
|
|
|
2 |
2,576 |
Shell Programming and Scripting |
|
|
|
2 |
4,316 |
Shell Programming and Scripting |
|
|
|
2 |
5,529 |
Shell Programming and Scripting |
|
|
|
1 |
9,025 |
Shell Programming and Scripting |
|
|
|
8 |
5,132 |
Shell Programming and Scripting |
|
|
|
4 |
4,211 |
Programming |
|
|
|
7 |
4,455 |
Shell Programming and Scripting |
|
|
|
2 |
2,435 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,463 |
Shell Programming and Scripting |
|
|
|
6 |
3,646 |
Shell Programming and Scripting |
|
|
|
1 |
7,891 |
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)