37,741
社区成员
发帖
与我相关
我的任务
分享use strict;
use warnings;
my $phone="22|33|44|55";
if ($phone!~/\d+\|\d*\|\d+\|\d*/)
{
print("error\n");
}
else
{
print("OK\n");
}use strict;
use warnings;
my $phone="22|33|44|";
if ($phone!~/\d+\|\d.\|\d+\|\d./)
{
print("error\n");
}
else
{
print("OK\n");
}