?? evalre.pl.svn-base
字號(hào):
#: evalre.pl#: evaluate regex using Perl or C#: 2006-05-19 2006-05-19use strict;use warnings;use re::DFA::Perl;use re::DFA::C;use Getopt::Std;my %opts;getopts('hpc', \%opts);if ($opts{h}) { Usage(0);}if (@ARGV != 2) { Usage(1);}sub Usage { my $code = shift; my $msg = "Usage: re2c [-p] [-c] <regex> <text>\n"; if ($code == 0) { print $msg; exit(0); } else { warn $msg; exit($code); }}if ($opts{p} and $opts{c}) { die "error: Only one of the C and Perl emitters should be selected.\n";}my ($regex, $text) = @ARGV;my $match;if ($opts{c}) { *match = re::DFA::C->as_method($regex); $match = match($text);} else { *match = re::DFA::Perl->as_method($regex); $match = match($text);}if (defined $match) { $match =~ s/'/\\'/g; print "match: '$match'\n";} else { print "fail to match"; exit(1);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -