Unix and Linux Discussions Tagged with match |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
16,577 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
70,228 |
Shell Programming and Scripting |
|
|
|
6 |
15,469 |
Shell Programming and Scripting |
|
|
|
6 |
9,963 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,816 |
UNIX for Beginners Questions & Answers |
|
|
|
27 |
17,274 |
Shell Programming and Scripting |
|
|
|
3 |
9,282 |
Shell Programming and Scripting |
|
|
|
2 |
4,259 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,412 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,309 |
Shell Programming and Scripting |
|
|
|
4 |
3,716 |
Shell Programming and Scripting |
|
|
|
6 |
3,091 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
2,209 |
Shell Programming and Scripting |
|
|
|
2 |
2,351 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,868 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
7,565 |
Shell Programming and Scripting |
|
|
|
32 |
9,794 |
Shell Programming and Scripting |
|
|
|
2 |
2,134 |
Shell Programming and Scripting |
|
|
|
2 |
4,316 |
Shell Programming and Scripting |
|
|
|
2 |
12,289 |
Shell Programming and Scripting |
|
|
|
2 |
3,040 |
Shell Programming and Scripting |
|
|
|
6 |
2,408 |
Shell Programming and Scripting |
|
|
|
7 |
4,180 |
Shell Programming and Scripting |
|
|
|
3 |
13,134 |
Shell Programming and Scripting |
|
|
|
5 |
3,280 |
Shell Programming and Scripting |
|
|
|
17 |
14,596 |
Shell Programming and Scripting |
|
|
|
2 |
2,935 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
6,609 |
Shell Programming and Scripting |
|
|
|
3 |
3,858 |
Shell Programming and Scripting |
|
|
|
0 |
4,974 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
5,141 |
Shell Programming and Scripting |
|
|
|
4 |
2,008 |
Shell Programming and Scripting |
|
|
|
2 |
2,272 |
Shell Programming and Scripting |
|
|
|
3 |
4,540 |
Shell Programming and Scripting |
|
|
|
1 |
2,726 |
Shell Programming and Scripting |
|
|
|
1 |
8,624 |
Linux |
|
|
|
19 |
12,502 |
Shell Programming and Scripting |
|
|
|
0 |
1,066 |
Software Releases - RSS News |
|
|
|
0 |
2,805 |
UNIX and Linux RSS News |
|
|
|
7 |
4,503 |
Shell Programming and Scripting |
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)