📄 evalre.bat
字号:
@rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto endofperl
:WinNT
perl -x -S %0 %*
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
goto endofperl
@rem ';
#!perl
#line 15
#: evalre.pl
#: evaluate regex using Perl or C
#: 2006-05-19 2006-05-19
use 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);
}
__END__
:endofperl
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -