can any one suggest a better code to this??Yes, for sure:#!/usr/bin/perl -w my $string = "rid"; while (<>) { if (/($string){3}/) { print; } }
and, arguably:#!/usr/bin/perl -w my $string = "rid"; while (<>) { if (/($string){3}/) { print; } }
use strict; my $string = 'ri\d+'; while (my $line = <>) { if ($line =~ m{ (?: \Q$string\E ){3} }xms) { print $line; } }
In reply to Re: can any reply out with a better code than this??
by fenLisesi
in thread can any reply out with a better code than this??
by asdfghjkl
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |